From: Per Bothner Date: Mon, 19 Mar 2001 22:00:29 +0000 (-0800) Subject: jcf-parse.c (load_inner_classes): Check CLASS_LOADED_P before trying to load an inner... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=80fc2e84d95714c998b2855250b3d440f38620aa;p=gcc.git jcf-parse.c (load_inner_classes): Check CLASS_LOADED_P before trying to load an inner class. * jcf-parse.c (load_inner_classes): Check CLASS_LOADED_P before trying to load an inner class. From-SVN: r40638 --- diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 77f98ca210d..2a96eb553f6 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,5 +1,8 @@ 2001-03-19 Per Bothner + * jcf-parse.c (load_inner_classes): Check CLASS_LOADED_P + before trying to load an inner class. + Fixes to process to command-line .class files in two passes. * java-tree.h (JAVA_FILE_P, CLASS_FILE_P, ZIP_FILE_P): New flags. (CLASS_FROM_CURRENTLY_COMPILED_SOURCE_P): Rename to .. diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c index 84f268878cb..4dff49bcfc7 100644 --- a/gcc/java/jcf-parse.c +++ b/gcc/java/jcf-parse.c @@ -728,7 +728,8 @@ load_inner_classes (cur_class) { tree name = DECL_NAME (TREE_PURPOSE (current)); tree decl = IDENTIFIER_GLOBAL_VALUE (name); - if (decl && !CLASS_BEING_LAIDOUT (TREE_TYPE (decl))) + if (decl && ! CLASS_LOADED_P (TREE_TYPE (decl)) + && !CLASS_BEING_LAIDOUT (TREE_TYPE (decl))) load_class (name, 1); } }