* varasm.c (globalize_decl): Fix indentation.
authorKazu Hirata <kazu@codesourcery.com>
Mon, 29 May 2006 15:33:55 +0000 (15:33 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Mon, 29 May 2006 15:33:55 +0000 (15:33 +0000)
From-SVN: r114203

gcc/ChangeLog
gcc/varasm.c

index facaa7191514f671fadc5a40b4c41c1cb8bb599d..b89fb2fe9758afc581b53250cfb3b40c77739882 100644 (file)
@@ -1,3 +1,7 @@
+2006-05-29  Kazu Hirata  <kazu@codesourcery.com>
+
+       * varasm.c (globalize_decl): Fix indentation.
+
 2006-05-29  Diego Novillo  <dnovillo@redhat.com>
 
        PR 26242
index f0b521ca8e54a75765875b69be31ce3e7a6f6199..71158ba860b6c87ffb57ffa1bc08069ee4dbe0fa 100644 (file)
@@ -4743,16 +4743,16 @@ globalize_decl (tree decl)
            p = &TREE_CHAIN (t);
        }
 
-       /* Remove weakrefs to the same target from the pending weakref
-          list, for the same reason.  */
-       for (p = &weakref_targets; (t = *p) ; )
-         {
-           if (DECL_ASSEMBLER_NAME (decl)
-               == ultimate_transparent_alias_target (&TREE_VALUE (t)))
-             *p = TREE_CHAIN (t);
-           else
-             p = &TREE_CHAIN (t);
-         }
+      /* Remove weakrefs to the same target from the pending weakref
+        list, for the same reason.  */
+      for (p = &weakref_targets; (t = *p) ; )
+       {
+         if (DECL_ASSEMBLER_NAME (decl)
+             == ultimate_transparent_alias_target (&TREE_VALUE (t)))
+           *p = TREE_CHAIN (t);
+         else
+           p = &TREE_CHAIN (t);
+       }
 
       return;
     }