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)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174944 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/PHIElimination.cpp

index 6d8f20744463ae3a1d10a0e1b4d6e9c06b1b2704..f046ac9627d92719fd17747d18a6154353cfb955 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);
   }