Fix a typo in MachineInstr::unbundleFromSucc() method.

llvm-svn: 171983
This commit is contained in:
Sergei Larin 2013-01-09 17:54:33 +00:00
parent 5a6a020d9b
commit 3b46d7ea26
1 changed files with 1 additions and 1 deletions

View File

@ -897,7 +897,7 @@ void MachineInstr::unbundleFromSucc() {
assert(isBundledWithSucc() && "MI isn't bundled with its successor");
clearFlag(BundledSucc);
MachineBasicBlock::instr_iterator Succ = this;
--Succ;
++Succ;
assert(Succ->isBundledWithPred() && "Inconsistent bundle flags");
Succ->clearFlag(BundledPred);
}