aboutsummaryrefslogtreecommitdiff
path: root/gcc/varasm.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-05-29 15:33:55 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2006-05-29 15:33:55 +0000
commiteb5fa7733e28c01d4a2f79ca4f24c21466a409c4 (patch)
tree79a6c14cd77589ecf011efd6e0fb78689050b87b /gcc/varasm.c
parenta6719dc6addf2b923528ce710f21a8a94ace5b10 (diff)
downloadgcc-eb5fa7733e28c01d4a2f79ca4f24c21466a409c4.zip
gcc-eb5fa7733e28c01d4a2f79ca4f24c21466a409c4.tar.gz
gcc-eb5fa7733e28c01d4a2f79ca4f24c21466a409c4.tar.bz2
* varasm.c (globalize_decl): Fix indentation.
From-SVN: r114203
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r--gcc/varasm.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c
index f0b521c..71158ba 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;
}