[llvm-commits] [llvm] r103185 - /llvm/trunk/lib/CodeGen/Spiller.cpp

Evan Cheng evan.cheng at apple.com
Thu May 6 09:33:12 PDT 2010


Author: evancheng
Date: Thu May  6 11:33:12 2010
New Revision: 103185

URL: http://llvm.org/viewvc/llvm-project?rev=103185&view=rev
Log:
80 col violation.

Modified:
    llvm/trunk/lib/CodeGen/Spiller.cpp

Modified: llvm/trunk/lib/CodeGen/Spiller.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/Spiller.cpp?rev=103185&r1=103184&r2=103185&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/Spiller.cpp (original)
+++ llvm/trunk/lib/CodeGen/Spiller.cpp Thu May  6 11:33:12 2010
@@ -142,8 +142,8 @@
 
       // Insert store if necessary.
       if (hasDef) {
-        tii->storeRegToStackSlot(*mi->getParent(), llvm::next(miItr), newVReg, true,
-                                 ss, trc);
+        tii->storeRegToStackSlot(*mi->getParent(), llvm::next(miItr), newVReg,
+                                 true, ss, trc);
         MachineInstr *storeInstr(llvm::next(miItr));
         SlotIndex storeIndex =
           lis->InsertMachineInstrInMaps(storeInstr).getDefIndex();





More information about the llvm-commits mailing list