From eb5fa7733e28c01d4a2f79ca4f24c21466a409c4 Mon Sep 17 00:00:00 2001 From: Kazu Hirata <kazu@codesourcery.com> Date: Mon, 29 May 2006 15:33:55 +0000 Subject: [PATCH] * varasm.c (globalize_decl): Fix indentation. From-SVN: r114203 --- gcc/ChangeLog | 4 ++++ gcc/varasm.c | 20 ++++++++++---------- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index facaa7191514..b89fb2fe9758 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/varasm.c b/gcc/varasm.c index f0b521ca8e54..71158ba860b6 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -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; } -- GitLab