* varasm.c (globalize_decl): Fix indentation.

From-SVN: r114203
This commit is contained in:
Kazu Hirata 2006-05-29 15:33:55 +00:00 committed by Kazu Hirata
parent a6719dc6ad
commit eb5fa7733e
2 changed files with 14 additions and 10 deletions

View 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> 2006-05-29 Diego Novillo <dnovillo@redhat.com>
PR 26242 PR 26242

View File

@ -4743,16 +4743,16 @@ globalize_decl (tree decl)
p = &TREE_CHAIN (t); p = &TREE_CHAIN (t);
} }
/* Remove weakrefs to the same target from the pending weakref /* Remove weakrefs to the same target from the pending weakref
list, for the same reason. */ list, for the same reason. */
for (p = &weakref_targets; (t = *p) ; ) for (p = &weakref_targets; (t = *p) ; )
{ {
if (DECL_ASSEMBLER_NAME (decl) if (DECL_ASSEMBLER_NAME (decl)
== ultimate_transparent_alias_target (&TREE_VALUE (t))) == ultimate_transparent_alias_target (&TREE_VALUE (t)))
*p = TREE_CHAIN (t); *p = TREE_CHAIN (t);
else else
p = &TREE_CHAIN (t); p = &TREE_CHAIN (t);
} }
return; return;
} }