parse.y (check_inner_class_access): Moved declaration of local `enclosing_decl_type...
authorAlexandre Petit-Bianco <apbianco@redhat.com>
Tue, 20 Feb 2001 21:18:13 +0000 (13:18 -0800)
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>
Tue, 20 Feb 2001 21:18:13 +0000 (13:18 -0800)
2001-02-20  Alexandre Petit-Bianco  <apbianco@redhat.com>

        * parse.y (check_inner_class_access): Moved declaration of local
        `enclosing_decl_type' to the right location.

(http://gcc.gnu.org/ml/gcc-patches/2001-02/msg01258.html)

From-SVN: r39933

gcc/java/ChangeLog
gcc/java/parse.y

index 4a74ae7214e42298281af3bf79ebff9811f13c15..f62ccf7a2817ca7c95dd577bf4da5b5749de4e4b 100644 (file)
@@ -1,3 +1,8 @@
+2001-02-20  Alexandre Petit-Bianco  <apbianco@redhat.com>
+
+       * parse.y (check_inner_class_access): Moved declaration of local
+       `enclosing_decl_type' to the right location.
+
 2001-02-19  Bryce McKinlay  <bryce@albatross.co.nz>
 
        * parse.y (parser_check_super_interface): Don't call 
index 971a8876cc2f6f8bb5eb6bb814027f35a1e642b4..6cfaf650611e7cbaf2f2902fc3a5bc08cbcd172d 100644 (file)
@@ -6789,6 +6789,7 @@ check_inner_class_access (decl, enclosing_decl, cl)
      tree decl, enclosing_decl, cl;
 {
   const char *access;
+  tree enclosing_decl_type;
 
   /* We don't issue an error message when CL is null. CL can be null
      as a result of processing a JDEP crafted by source_start_java_method
@@ -6798,7 +6799,7 @@ check_inner_class_access (decl, enclosing_decl, cl)
   if (!decl || !cl)
     return;
 
-  tree enclosing_decl_type = TREE_TYPE (enclosing_decl);
+  enclosing_decl_type = TREE_TYPE (enclosing_decl);
 
   if (CLASS_PRIVATE (decl))
     {