diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-31 21:59:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-31 21:59:59 +0000 |
commit | b4186e0ccd8dd8630078147e022142a8b65c9383 (patch) | |
tree | 693c16b186710449a3285d900b7afd08ac4fc28f /lib/Target/SparcV9/RegAlloc | |
parent | 4f6410f5cb1c9ad8cbe4f5a96dd706023ff4dbc5 (diff) | |
download | external_llvm-b4186e0ccd8dd8630078147e022142a8b65c9383.zip external_llvm-b4186e0ccd8dd8630078147e022142a8b65c9383.tar.gz external_llvm-b4186e0ccd8dd8630078147e022142a8b65c9383.tar.bz2 |
MBB::remove should not modify the iterator passed in
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12572 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/RegAlloc')
-rw-r--r-- | lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp index 51a6f8b..28fc75a 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp @@ -542,7 +542,7 @@ void PhyRegAlloc::updateMachineCode() } // move instruction before branch - MBB.insert(MII, MBB.remove(DelaySlotMI)); + MBB.insert(MII, MBB.remove(DelaySlotMI++)); // On cond1 we are done (we already moved the // instruction out of the delay slot). On cond2 we need |