aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/parse.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-03-28 00:59:30 -0800
committerRichard Henderson <rth@gcc.gnu.org>2001-03-28 00:59:30 -0800
commitce1c98ea459813570b4588427030daa03958fda6 (patch)
tree4e0cd6667d1a644a7351591937d44f5c7b75db48 /gcc/java/parse.h
parentda7da8f9773d5e6b2edde3d332df6f2f85ed3c51 (diff)
downloadgcc-ce1c98ea459813570b4588427030daa03958fda6.zip
gcc-ce1c98ea459813570b4588427030daa03958fda6.tar.gz
gcc-ce1c98ea459813570b4588427030daa03958fda6.tar.bz2
java-tree.h (throw_node): Define as a single member of java_global_trees instead of a separate array.
* java-tree.h (throw_node): Define as a single member of java_global_trees instead of a separate array. (JTI_THROW_NODE): New. * decl.c (throw_node): Don't declare. (init_decl_processing): Init a scalar throw_node. Don't register it for gc. * check-init.c (check_init): Reference scalar throw_node. * expr.c (build_java_athrow): Likewise. * jcf-write.c (generate_bytecode_insns): Likewise. * parse.h (BUILD_THROW): Likewise. From-SVN: r40922
Diffstat (limited to 'gcc/java/parse.h')
-rw-r--r--gcc/java/parse.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/java/parse.h b/gcc/java/parse.h
index 05fb211..9ca55d4 100644
--- a/gcc/java/parse.h
+++ b/gcc/java/parse.h
@@ -669,13 +669,13 @@ typedef struct _jdeplist {
TREE_SIDE_EFFECTS (WHERE) = 1; \
}
-#define BUILD_THROW(WHERE, WHAT) \
- { \
- (WHERE) = \
- build (CALL_EXPR, void_type_node, \
- build_address_of (throw_node[USING_SJLJ_EXCEPTIONS ? 1 : 0]), \
- build_tree_list (NULL_TREE, (WHAT)), NULL_TREE); \
- TREE_SIDE_EFFECTS ((WHERE)) = 1; \
+#define BUILD_THROW(WHERE, WHAT) \
+ { \
+ (WHERE) = \
+ build (CALL_EXPR, void_type_node, \
+ build_address_of (throw_node), \
+ build_tree_list (NULL_TREE, (WHAT)), NULL_TREE); \
+ TREE_SIDE_EFFECTS ((WHERE)) = 1; \
}
/* Set wfl_operator for the most accurate error location */