diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-11 22:22:57 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-11 22:22:57 +0000 |
commit | a091667d93f7eca6cf206e0a710fc8122881f4c7 (patch) | |
tree | 1207a1256effdf7c5306676bf7ae5e4289ea8266 /gcc/java/class.c | |
parent | 4b61f2a600a929f19719f8805c9e13b59af346ab (diff) | |
download | ppe42-gcc-a091667d93f7eca6cf206e0a710fc8122881f4c7.tar.gz ppe42-gcc-a091667d93f7eca6cf206e0a710fc8122881f4c7.zip |
Thu Sep 9 17:33:28 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* class.c (finish_class): We're now outside a valid method
declaration. Tell the rest of gcc so.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29347 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index 2b945e0ca2b..df318a01004 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -1225,6 +1225,7 @@ finish_class () method = TREE_CHAIN (method); } + current_function_decl = NULL_TREE; make_class_data (current_class); register_class (); rest_of_decl_compilation (TYPE_NAME (current_class), (char*) 0, 1, 0); |