1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Fix indentation.

llvm-svn: 174944
This commit is contained in:
Cameron Zwarich 2013-02-12 05:48:56 +00:00
parent 044e235cfe
commit dbc87d3ca5

View 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);
}