OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / gcc / java / java-tree.def
1 /* Shift right, logical. */
2
3 DEFTREECODE (URSHIFT_EXPR, "urshift_expr", "2", 2)
4
5 /* Return -1, 0, 1 depending on whether the first argument is
6    less, equal, or greater to the second argument. */
7 DEFTREECODE (COMPARE_EXPR, "compare_expr", "2", 2)
8
9 /* Same as COMPARE_EXPR, but if either value is NaN, the result is -1. */
10 DEFTREECODE (COMPARE_L_EXPR, "compare_l_expr", "2", 2)
11 /* Same as COMPARE_EXPR, but if either value is NaN, the result is 1. */
12 DEFTREECODE (COMPARE_G_EXPR, "compare_g_expr", "2", 2)