diff options
author | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-28 12:06:52 +0000 |
---|---|---|
committer | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-28 12:06:52 +0000 |
commit | 0c4db5ff3e6dc0c3f4b6e5d74471cf8170133401 (patch) | |
tree | aebfd63be8cd72586541ea999045763a67598c27 /gcc/java/java-tree.h | |
parent | 5df674ea0861a65eecd855a93da4c64c226a4861 (diff) | |
download | gcc-0c4db5ff3e6dc0c3f4b6e5d74471cf8170133401.tar.gz |
* java-tree.h (struct lang_type) [catch_classes]: Change type to a
VEC.
* except.c (prepare_eh_table_type): Call CONSTRUCTOR_APPEND_ELT
instead of tree_cons.
* class.c (make_class): Add dummy entry to TYPE_CATCH_CLASSES.
(emit_catch_table): Adjust for new type of TYPE_CATCH_CLASSES.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161487 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index 282b5802ed9..ccaa0e34eb7 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -952,7 +952,7 @@ struct GTY((variable_size)) lang_type { tree ctable_decl; /* The table of classes for the runtime type matcher. */ - tree catch_classes; + VEC(constructor_elt,gc) *catch_classes; htab_t GTY ((param_is (struct treetreehash_entry))) type_to_runtime_map; /* The mapping of classes to exception region |