Value | Meaning |
---|---|
GCC_JIT_UNARY_OP_MINUS | Negate an arithmetic value; analogous to: -(EXPR) in C. |
GCC_JIT_UNARY_OP_BITWISE_NEGATE | Bitwise negation of an integer value (one's complement); analogous to: ~(EXPR) in C. |
GCC_JIT_UNARY_OP_LOGICAL_NEGATE | Logical negation of an arithmetic or pointer value; analogous to: !(EXPR) in C. |