aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/java-tree.def
blob: a05b92d0aace6c3a979c86d4c0c80264ad0a44c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Shift right, logical. */

DEFTREECODE (URSHIFT_EXPR, "urshift_expr", "2", 2)

/* Return -1, 0, 1 depending on whether the first argument is
   less, equal, or greater to the second argument. */
DEFTREECODE (COMPARE_EXPR, "compare_expr", "2", 2)

/* Same as COMPARE_EXPR, but if either value is NaN, the result is -1. */
DEFTREECODE (COMPARE_L_EXPR, "compare_l_expr", "2", 2)
/* Same as COMPARE_EXPR, but if either value is NaN, the result is 1. */
DEFTREECODE (COMPARE_G_EXPR, "compare_g_expr", "2", 2)