This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[patch] varasm.c: Fix indentation.
- From: Kazu Hirata <kazu at codesourcery dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Mon, 29 May 2006 08:34:05 -0700
- Subject: [patch] varasm.c: Fix indentation.
Hi,
Committed as obvious.
Kazu Hirata
2006-05-29 Kazu Hirata <kazu@codesourcery.com>
* varasm.c (globalize_decl): Fix indentation.
Index: varasm.c
===================================================================
--- varasm.c (revision 114196)
+++ varasm.c (working copy)
@@ -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;
}