From: Sergei Larin Date: Wed, 9 Jan 2013 17:54:33 +0000 (+0000) Subject: Fix a typo in MachineInstr::unbundleFromSucc() method. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=12cd49ae1d3c8f45f3e41b6cce681b667b99ef07;p=oota-llvm.git Fix a typo in MachineInstr::unbundleFromSucc() method. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171983 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 29d8866b8d6..a4d9813e507 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -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); }