diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-19 12:32:50 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-19 12:32:50 +0000 |
commit | ffb7d1560d92c07a225c042b4eea5949c828cf71 (patch) | |
tree | 3bacf86daef037c8a0c3d4922399266f1eb3908e /gcc/java/java-tree.def | |
parent | 559eb7e83c032e80ced1128361af1a9913801779 (diff) | |
download | gcc-ffb7d1560d92c07a225c042b4eea5949c828cf71.tar.gz |
�
Use new TRY_FINALLY_EXPR tree node. See ChangeLog.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25314 138bc75d-0d04-0410-961f-82ee72b054a4
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 2134c5b70af..ead192476f6 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. */ |