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 committed: Fix indentation


I noticed a minor case in i386.md where the indentation was wrong.
Patch bootstrapped and tested on x86_64-unknown-linux-gnu.  Committed as
obvious.

Ian


2010-09-15  Ian Lance Taylor  <iant@google.com>

	* config/i386/i386.md (truncxf<mode>2): Fix indentation.


Index: config/i386/i386.md
===================================================================
--- config/i386/i386.md	(revision 164305)
+++ config/i386/i386.md	(working copy)
@@ -4336,9 +4336,9 @@
     }
   else
     {
-     enum ix86_stack_slot slot = (virtuals_instantiated
-				  ? SLOT_TEMP
-				  : SLOT_VIRTUAL);
+      enum ix86_stack_slot slot = (virtuals_instantiated
+				   ? SLOT_TEMP
+				   : SLOT_VIRTUAL);
       operands[2] = assign_386_stack_local (<MODE>mode, slot);
     }
 })

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