This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[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;
     }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]