diff options
author | Cameron Zwarich <zwarich@apple.com> | 2013-02-12 05:48:56 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2013-02-12 05:48:56 +0000 |
commit | 8d49134eeaa36953410c2fba65f7237fb3f079e7 (patch) | |
tree | cca8f9e46c2b5f1c25d5f5c5e7c7a8334636add2 | |
parent | 5758a711f4e593d1daff3bae0fa9d694e5980719 (diff) | |
download | external_llvm-8d49134eeaa36953410c2fba65f7237fb3f079e7.zip external_llvm-8d49134eeaa36953410c2fba65f7237fb3f079e7.tar.gz external_llvm-8d49134eeaa36953410c2fba65f7237fb3f079e7.tar.bz2 |
Fix indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174944 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/PHIElimination.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/PHIElimination.cpp b/lib/CodeGen/PHIElimination.cpp index 6d8f207..f046ac9 100644 --- a/lib/CodeGen/PHIElimination.cpp +++ b/lib/CodeGen/PHIElimination.cpp @@ -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); } |