Fix indentation.
authorCameron Zwarich <zwarich@apple.com>
Tue, 12 Feb 2013 05:48:56 +0000 (05:48 +0000)
committerCameron Zwarich <zwarich@apple.com>
Tue, 12 Feb 2013 05:48:56 +0000 (05:48 +0000)
llvm-svn: 174944

llvm/lib/CodeGen/PHIElimination.cpp

index 6d8f207..f046ac9 100644 (file)
@@ -162,8 +162,8 @@ bool PHIElimination::runOnMachineFunction(MachineFunction &MF) {
   // Clean up the lowered PHI instructions.
   for (LoweredPHIMap::iterator I = LoweredPHIs.begin(), E = LoweredPHIs.end();
        I != E; ++I) {
-   if (LIS)
-     LIS->RemoveMachineInstrFromMaps(I->first);
+    if (LIS)
+      LIS->RemoveMachineInstrFromMaps(I->first);
     MF.DeleteMachineInstr(I->first);
   }