diff options
author | Andrew Trick <atrick@apple.com> | 2012-02-08 02:17:25 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-02-08 02:17:25 +0000 |
commit | 99a7a13f4aa5bf8f272c95f7b09ba997d2b30a35 (patch) | |
tree | 5f4693eb6e8c5f69494c69274979dbc22af18c98 /lib/CodeGen/LiveIntervalAnalysis.cpp | |
parent | 291411c7a164dd1b347b5ef21e062120efac3db7 (diff) |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index cea75ef4b4..4da4997ab6 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); |