Value | Meaning |
---|---|
MINUSGCC_JIT_UNARY_OP_MINUS | Negate an arithmetic value. This is equivalent to "-(value)". |
BITWISE_NEGATEGCC_JIT_UNARY_OP_BITWISE_NEGATE | Bitwise negation of an integer value (one's complement). This is equivalent to "~(value)". |
LOGICAL_NEGATEGCC_JIT_UNARY_OP_LOGICAL_NEGATE | Logical negation of an arithmetic or pointer value. This is equivalent to "!(value)". |
Kinds of unary ops.