From a45b6e23d0ef1841fe3500b570e2f7403cd92d46 Mon Sep 17 00:00:00 2001 From: Matt Beaumont-Gay Date: Fri, 17 Feb 2012 21:40:48 +0000 Subject: [PATCH] Sink variable into assert llvm-svn: 150841 --- lib/CodeGen/LiveIntervalAnalysis.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 4e66bf61383..e84e8009ad4 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -1271,8 +1271,8 @@ void LiveIntervals::handleMove(MachineInstr* mi) { SlotIndex newIndex = mi->isInsideBundle() ? indexes_->getInstructionIndex(mi->getBundleStart()) : indexes_->insertMachineInstrInMaps(mi); - MachineBasicBlock* mbb = mi->getParent(); - assert(getMBBStartIdx(mbb) <= oldIndex && oldIndex < getMBBEndIdx(mbb) && + assert(getMBBStartIdx(mi->getParent()) <= oldIndex && + oldIndex < getMBBEndIdx(mi->getParent()) && "Cannot handle moves across basic block boundaries."); assert(!mi->isBundled() && "Can't handle bundled instructions yet.");