12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @@
- int e;
- constant c;
- @@
- (
- - tt_assert(e == c)
- + tt_int_op(e, OP_EQ, c)
- |
- - tt_assert(e != c)
- + tt_int_op(e, OP_NE, c)
- |
- - tt_assert(e < c)
- + tt_int_op(e, OP_LT, c)
- |
- - tt_assert(e <= c)
- + tt_int_op(e, OP_LE, c)
- |
- - tt_assert(e > c)
- + tt_int_op(e, OP_GT, c)
- |
- - tt_assert(e >= c)
- + tt_int_op(e, OP_GE, c)
- )
- @@
- unsigned int e;
- constant c;
- @@
- (
- - tt_assert(e == c)
- + tt_uint_op(e, OP_EQ, c)
- |
- - tt_assert(e != c)
- + tt_uint_op(e, OP_NE, c)
- |
- - tt_assert(e < c)
- + tt_uint_op(e, OP_LT, c)
- |
- - tt_assert(e <= c)
- + tt_uint_op(e, OP_LE, c)
- |
- - tt_assert(e > c)
- + tt_uint_op(e, OP_GT, c)
- |
- - tt_assert(e >= c)
- + tt_uint_op(e, OP_GE, c)
- )
|