diff options
author | Tom Tromey <tromey@redhat.com> | 2007-07-26 19:07:32 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2007-07-26 19:07:32 +0000 |
commit | 41f701ba9451ed054d81d4235aa19e05a116924c (patch) | |
tree | 825383d140588a6133ad9e64f3dc43cf6e5e304c /gcc/java/java-tree.def | |
parent | 8fee41c2fecbc35041abd164b869ff6a4b92b318 (diff) | |
download | gcc-41f701ba9451ed054d81d4235aa19e05a116924c.zip gcc-41f701ba9451ed054d81d4235aa19e05a116924c.tar.gz gcc-41f701ba9451ed054d81d4235aa19e05a116924c.tar.bz2 |
java-tree.h (push_labeled_block, [...]): Remove.
* java-tree.h (push_labeled_block, pop_labeled_block): Remove.
(LABELED_BLOCK_LABEL, LABELED_BLOCK_BODY,
EXIT_BLOCK_LABELED_BLOCK): Likewise.
* lang.c (java_tree_inlining_walk_subtrees): Update.
(java_dump_tree): Likewise.
* java-tree.def (LABELED_BLOCK_EXPR, EXIT_BLOCK_EXPR, TRY_EXPR):
Remove.
* decl.c (push_labeled_block, pop_labeled_block): Remove.
* java-gimplify.c (java_gimplify_labeled_block_expr,
java_gimplify_exit_block_expr, java_gimplify_try_expr): Remove.
(java_gimplify_expr): Update.
From-SVN: r126962
Diffstat (limited to 'gcc/java/java-tree.def')
-rw-r--r-- | gcc/java/java-tree.def | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/java/java-tree.def b/gcc/java/java-tree.def index c757ec4..5b15a1a 100644 --- a/gcc/java/java-tree.def +++ b/gcc/java/java-tree.def @@ -32,19 +32,6 @@ DEFTREECODE (COMPARE_L_EXPR, "compare_l_expr", tcc_binary, 2) /* Same as COMPARE_EXPR, but if either value is NaN, the result is 1. */ DEFTREECODE (COMPARE_G_EXPR, "compare_g_expr", tcc_binary, 2) -/* A labeled block. Operand 0 is the label that will be generated to - mark the end of the block. Operand 1 is the labeled block body. */ -DEFTREECODE (LABELED_BLOCK_EXPR, "labeled_block_expr", tcc_expression, 2) - -/* Exit a labeled block, possibly returning a value. Operand 0 is a - LABELED_BLOCK_EXPR to exit. */ -DEFTREECODE (EXIT_BLOCK_EXPR, "exit_block_expr", tcc_statement, 1) - -/* Try expression - Operand 0 is the tried block, - Operand 1 contains chained catch nodes. */ -DEFTREECODE (TRY_EXPR, "try-catch", tcc_expression, 2) - /* Local variables: mode:c |