parse.y (build_super_invocation): Adjust declaration order to avoid declaration after...
authorHans-Peter Nilsson <hp@bitrange.com>
Mon, 26 Jul 2004 11:15:09 +0000 (11:15 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Mon, 26 Jul 2004 11:15:09 +0000 (11:15 +0000)
* parse.y (build_super_invocation): Adjust declaration order to
avoid declaration after statement.

From-SVN: r85189

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

index bb5aaa5b811f108cbd5ec990dde7538e97b19d3f..8962a64baaf780cf83a91bfe0b8960f14bb6544a 100644 (file)
@@ -1,3 +1,8 @@
+2004-07-26    <hp@bitrange.com>
+
+       * parse.y (build_super_invocation): Adjust declaration order to
+       avoid declaration after statement.
+
 2004-07-25  Bernardo Innocenti  <bernie@develer.com>
 
        * decl.c: Rename all identifiers named `class' to `cl'.
index 63dbf051ef67159ef311a4254cfb9ae96bc3118f..94b74e38fc1746128bc3273c6f8c8c341393b16a 100644 (file)
@@ -12317,11 +12317,13 @@ build_super_invocation (tree mdecl)
   else
     {
       tree super_wfl = build_wfl_node (super_identifier_node);
+      tree a = NULL_TREE, t;
+
       /* This is called after parsing is done, so the parser context
          won't be accurate. Set location info from current_class decl. */
       tree class_wfl = lookup_cl (TYPE_NAME (current_class));
       EXPR_WFL_LINECOL (super_wfl) = EXPR_WFL_LINECOL (class_wfl);
-      tree a = NULL_TREE, t;
+
       /* If we're dealing with an anonymous class, pass the arguments
          of the crafted constructor along. */
       if (ANONYMOUS_CLASS_P (DECL_CONTEXT (mdecl)))