mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 01:43:06 +00:00
When FpMOVDs appeared in pairs, we were mistakenly skipping over the latter of
each pair. I think this fixes that. One of these days, I swear I'm going to get the hang of C++ iterators. Really. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18734 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dc0cd0228f
commit
8ee6a2fb16
@ -92,11 +92,13 @@ bool FPMover::runOnMachineBasicBlock (MachineBasicBlock &MBB) {
|
||||
DEBUG (std::cerr << "FPMover: new dest reg. is " << NewDestReg1
|
||||
<< "; inserted instr is: " << *MI2);
|
||||
++NumFpMOVDs;
|
||||
I = J;
|
||||
--I;
|
||||
} else {
|
||||
MBB.erase (I);
|
||||
++SkippedFpMOVDs;
|
||||
I = J;
|
||||
}
|
||||
I = J;
|
||||
Changed = true;
|
||||
}
|
||||
return Changed;
|
||||
|
@ -92,11 +92,13 @@ bool FPMover::runOnMachineBasicBlock (MachineBasicBlock &MBB) {
|
||||
DEBUG (std::cerr << "FPMover: new dest reg. is " << NewDestReg1
|
||||
<< "; inserted instr is: " << *MI2);
|
||||
++NumFpMOVDs;
|
||||
I = J;
|
||||
--I;
|
||||
} else {
|
||||
MBB.erase (I);
|
||||
++SkippedFpMOVDs;
|
||||
I = J;
|
||||
}
|
||||
I = J;
|
||||
Changed = true;
|
||||
}
|
||||
return Changed;
|
||||
|
Loading…
Reference in New Issue
Block a user