summaryrefslogtreecommitdiff
path: root/lib/CodeGen/PHIElimination.cpp
diff options
context:
space:
mode:
authorCameron Zwarich <zwarich@apple.com>2013-02-12 05:48:56 +0000
committerCameron Zwarich <zwarich@apple.com>2013-02-12 05:48:56 +0000
commit8d49134eeaa36953410c2fba65f7237fb3f079e7 (patch)
treecca8f9e46c2b5f1c25d5f5c5e7c7a8334636add2 /lib/CodeGen/PHIElimination.cpp
parent5758a711f4e593d1daff3bae0fa9d694e5980719 (diff)
downloadllvm-8d49134eeaa36953410c2fba65f7237fb3f079e7.tar.gz
llvm-8d49134eeaa36953410c2fba65f7237fb3f079e7.tar.bz2
llvm-8d49134eeaa36953410c2fba65f7237fb3f079e7.tar.xz
Fix indentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174944 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PHIElimination.cpp')
-rw-r--r--lib/CodeGen/PHIElimination.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/PHIElimination.cpp b/lib/CodeGen/PHIElimination.cpp
index 6d8f207444..f046ac9627 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);
}