Fix assertion condition.

llvm-svn: 150627
This commit is contained in:
Lang Hames 2012-02-15 22:45:51 +00:00
parent 0b73456cc5
commit f15502f2e5
1 changed files with 1 additions and 1 deletions

View File

@ -970,7 +970,7 @@ void LiveIntervals::handleMove(MachineInstr *mi) {
MachineBasicBlock* mbb = mi->getParent();
assert(getMBBFromIndex(origIdx) == mbb &&
assert(getMBBStartIdx(mbb) <= origIdx && origIdx < getMBBEndIdx(mbb) &&
"Cannot handle moves across basic block boundaries.");
assert(!mi->isBundled() && "Can't handle bundled instructions yet.");