[llvm] r174944 - Fix indentation.
Cameron Zwarich
zwarich at apple.com
Mon Feb 11 21:48:56 PST 2013
Author: zwarich
Date: Mon Feb 11 23:48:56 2013
New Revision: 174944
URL: http://llvm.org/viewvc/llvm-project?rev=174944&view=rev
Log:
Fix indentation.
Modified:
llvm/trunk/lib/CodeGen/PHIElimination.cpp
Modified: llvm/trunk/lib/CodeGen/PHIElimination.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/PHIElimination.cpp?rev=174944&r1=174943&r2=174944&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/PHIElimination.cpp (original)
+++ llvm/trunk/lib/CodeGen/PHIElimination.cpp Mon Feb 11 23:48:56 2013
@@ -162,8 +162,8 @@ bool PHIElimination::runOnMachineFunctio
// 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);
}
More information about the llvm-commits
mailing list