Commit eb5fa773 by Kazu Hirata Committed by Kazu Hirata

* varasm.c (globalize_decl): Fix indentation.

From-SVN: r114203
parent a6719dc6
2006-05-29 Kazu Hirata <kazu@codesourcery.com>
* varasm.c (globalize_decl): Fix indentation.
2006-05-29 Diego Novillo <dnovillo@redhat.com>
PR 26242
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment