aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/LiveIntervalAnalysis.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-02-08 02:17:25 +0000
committerAndrew Trick <atrick@apple.com>2012-02-08 02:17:25 +0000
commit99a7a13f4aa5bf8f272c95f7b09ba997d2b30a35 (patch)
tree5f4693eb6e8c5f69494c69274979dbc22af18c98 /lib/CodeGen/LiveIntervalAnalysis.cpp
parent291411c7a164dd1b347b5ef21e062120efac3db7 (diff)
downloadexternal_llvm-99a7a13f4aa5bf8f272c95f7b09ba997d2b30a35.zip
external_llvm-99a7a13f4aa5bf8f272c95f7b09ba997d2b30a35.tar.gz
external_llvm-99a7a13f4aa5bf8f272c95f7b09ba997d2b30a35.tar.bz2
Added MachineInstr::isBundled() to check if an instruction is part of a bundle.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150044 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r--lib/CodeGen/LiveIntervalAnalysis.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp
index cea75ef..4da4997 100644
--- a/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/lib/CodeGen/LiveIntervalAnalysis.cpp
@@ -904,7 +904,7 @@ void LiveIntervals::moveInstr(MachineBasicBlock::iterator insertPt,
assert((insertPt == mbb->end() || insertPt->getParent() == mbb) &&
"Cannot handle moves across basic block boundaries.");
assert(&*insertPt != mi && "No-op move requested?");
- assert(!mi->isInsideBundle() && "Can't handle bundled instructions yet.");
+ assert(!mi->isBundled() && "Can't handle bundled instructions yet.");
// Grab the original instruction index.
SlotIndex origIdx = indexes_->getInstructionIndex(mi);