OSDN Git Service

2004-12-07 Andrew Haley <aph@redhat.com>
authoraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 8 Dec 2004 14:01:50 +0000 (14:01 +0000)
committeraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 8 Dec 2004 14:01:50 +0000 (14:01 +0000)
* jcf-parse.c (load_class): Remove sanity test for missing inner
class file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91900 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/java/ChangeLog
gcc/java/jcf-parse.c

index fb30719..0b241f2 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-07  Andrew Haley  <aph@redhat.com>
+
+       * jcf-parse.c (load_class): Remove sanity test for missing inner
+       class file.
+       
 2004-12-06  Tom Tromey  <tromey@redhat.com>
 
        * Make-lang.in (JAVA_MANFILES): Added gcj-dbtool.
index 8171522..b6732a1 100644 (file)
@@ -682,12 +682,6 @@ load_class (tree class_or_name, int verbose)
              *separator = '\0';
              name = get_identifier (IDENTIFIER_POINTER (name));
              *separator = c;
-
-             /* Otherwise we might get infinite recursion, if say we
-                have String.class but not
-                String$CaseInsensitiveComparator.class. */
-             if (current_jcf && current_jcf->java_source == 0)
-               break;
            }
          /* Otherwise, we failed, we bail. */
          else