diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-01 04:29:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-01 04:29:47 +0000 |
commit | 6c375e4926eec176305ddd564836554db3093402 (patch) | |
tree | 99ed131822ae6430cce1e12aa6126a4c10383f08 /llvm/lib/CodeGen/LiveIntervals.cpp | |
parent | 7c77fd50e7e523640ba2d8ae6c49c78dab9f6712 (diff) | |
download | bcm5719-llvm-6c375e4926eec176305ddd564836554db3093402.tar.gz bcm5719-llvm-6c375e4926eec176305ddd564836554db3093402.zip |
Start using MBB numbers directly instead of going through the live variables
map.
llvm-svn: 14518
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervals.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveIntervals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervals.cpp b/llvm/lib/CodeGen/LiveIntervals.cpp index 4fc08ec6b9c..cdcebfcc7e0 100644 --- a/llvm/lib/CodeGen/LiveIntervals.cpp +++ b/llvm/lib/CodeGen/LiveIntervals.cpp @@ -96,7 +96,7 @@ bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) { unsigned miIndex = 0; for (MachineFunction::iterator mbb = mf_->begin(), mbbEnd = mf_->end(); mbb != mbbEnd; ++mbb) { - unsigned mbbIdx = lv_->getMachineBasicBlockIndex(mbb); + unsigned mbbIdx = mbb->getNumber(); bool inserted = mbbi2mbbMap_.insert(std::make_pair(mbbIdx, mbb)).second; assert(inserted && "multiple index -> MachineBasicBlock"); |