diff options
Diffstat (limited to 'llvm/lib/Target/Mips/MipsEmitGPRestore.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MipsEmitGPRestore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp b/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp index df0e59198b7..119d1a82468 100644 --- a/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp +++ b/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp @@ -63,7 +63,7 @@ bool Inserter::runOnMachineFunction(MachineFunction &F) { if (MBB.isLandingPad()) { // Find EH_LABEL first. for (; I->getOpcode() != TargetOpcode::EH_LABEL; ++I) ; - + // Insert lw. ++I; DebugLoc dl = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); @@ -84,7 +84,7 @@ bool Inserter::runOnMachineFunction(MachineFunction &F) { .addImm(0); Changed = true; } - } + } return Changed; } |