diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2010-05-26 19:27:58 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2010-05-26 19:27:58 +0000 |
commit | 6484716cf617de9bf0fbca8d1003fbc30898acc0 (patch) | |
tree | 10c996e7a3c75332fea7e26d8c2da608d15ddad6 /gcc/java/java-tree.h | |
parent | ab9b814d258a26fc74f370b8fdb2b9250088794c (diff) | |
download | gcc-6484716cf617de9bf0fbca8d1003fbc30898acc0.zip gcc-6484716cf617de9bf0fbca8d1003fbc30898acc0.tar.gz gcc-6484716cf617de9bf0fbca8d1003fbc30898acc0.tar.bz2 |
java-tree.h (struct lang_decl_func): Change type of throws_list field to a VEC.
* java-tree.h (struct lang_decl_func): Change type of throws_list
field to a VEC.
* jcf-parse.c (HANDLE_EXCEPTIONS_ATTRIBUTE): Adjust for changed type
of DECL_FUNCTION_THROWS.
* class.c (make_method_value): Likewise.
From-SVN: r159899
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 0482abe..83f3b3d 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -776,7 +776,7 @@ struct GTY(()) lang_decl_func { int max_stack; int arg_slot_count; source_location last_line; /* End line number for a function decl */ - tree throws_list; /* Exception specified by `throws' */ + VEC(tree,gc) *throws_list; /* Exception specified by `throws' */ tree exc_obj; /* Decl holding the exception object. */ /* Class initialization test variables */ |