diff options
Diffstat (limited to 'gcc/java/java-tree.def')
-rw-r--r-- | gcc/java/java-tree.def | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gcc/java/java-tree.def b/gcc/java/java-tree.def index 2134c5b..ead1924 100644 --- a/gcc/java/java-tree.def +++ b/gcc/java/java-tree.def @@ -42,20 +42,14 @@ DEFTREECODE (DEFAULT_EXPR, "default", 'x', 0) /* Try expression Operand 0 is the tried block, - Operand 1 contains chained catch nodes - Operand 2 contains the finally clause. */ -DEFTREECODE (TRY_EXPR, "try-catch-finally", 'e', 3) + Operand 1 contains chained catch nodes. */ +DEFTREECODE (TRY_EXPR, "try-catch-finally", 'e', 2) /* Catch clause. Operand 0 is the catch clause block, which contains the declaration of the catch clause parameter. */ DEFTREECODE (CATCH_EXPR, "catch", '1', 1) -/* Finally clause. - Operand 0 is the finally label. - Operand 1 is the finally block. */ -DEFTREECODE (FINALLY_EXPR, "finally", 'e', 2) - /* Synchronized statement. Operand 0 is the expression on which we whish to synchronize, Operand 1 is the synchronized expression block. */ |