summaryrefslogtreecommitdiffstats
path: root/llvm/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
commit3bc0e0c651b6b2a91f333634a09ad31f7ff9c22e (patch)
tree7e7b606fc299da73d29e72cfd34916826b53a818 /llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
parente57583ab19b7b145d100b376fecf47db0fa5808a (diff)
downloadbcm5719-llvm-3bc0e0c651b6b2a91f333634a09ad31f7ff9c22e.tar.gz
bcm5719-llvm-3bc0e0c651b6b2a91f333634a09ad31f7ff9c22e.zip
Added MachineInstr::isBundled() to check if an instruction is part of a bundle.
llvm-svn: 150044
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervalAnalysis.cpp')
-rw-r--r--llvm/lib/CodeGen/LiveIntervalAnalysis.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
index cea75ef4b4d..4da4997ab67 100644
--- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
+++ b/llvm/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);
OpenPOWER on IntegriCloud