From 80fc2e84d95714c998b2855250b3d440f38620aa Mon Sep 17 00:00:00 2001 From: Per Bothner Date: Mon, 19 Mar 2001 14:00:29 -0800 Subject: 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 --- gcc/java/jcf-parse.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/java/jcf-parse.c') 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); } } -- cgit v1.2.1