summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/LiveVariables.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-01 04:29:47 +0000
committerChris Lattner <sabre@nondot.org>2004-07-01 04:29:47 +0000
commit6c375e4926eec176305ddd564836554db3093402 (patch)
tree99ed131822ae6430cce1e12aa6126a4c10383f08 /llvm/lib/CodeGen/LiveVariables.cpp
parent7c77fd50e7e523640ba2d8ae6c49c78dab9f6712 (diff)
downloadbcm5719-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/LiveVariables.cpp')
-rw-r--r--llvm/lib/CodeGen/LiveVariables.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LiveVariables.cpp b/llvm/lib/CodeGen/LiveVariables.cpp
index 80fab5c4155..0edb307b903 100644
--- a/llvm/lib/CodeGen/LiveVariables.cpp
+++ b/llvm/lib/CodeGen/LiveVariables.cpp
@@ -70,7 +70,7 @@ LiveVariables::VarInfo &LiveVariables::getVarInfo(unsigned RegIdx) {
void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
MachineBasicBlock *MBB) {
- unsigned BBNum = getMachineBasicBlockIndex(MBB);
+ unsigned BBNum = MBB->getNumber();
// Check to see if this basic block is one of the killing blocks. If so,
// remove it...
@@ -204,7 +204,7 @@ bool LiveVariables::runOnMachineFunction(MachineFunction &MF) {
for (df_ext_iterator<MachineBasicBlock*> DFI = df_ext_begin(Entry, Visited),
E = df_ext_end(Entry, Visited); DFI != E; ++DFI) {
MachineBasicBlock *MBB = *DFI;
- unsigned BBNum = getMachineBasicBlockIndex(MBB);
+ unsigned BBNum = MBB->getNumber();
// Loop over all of the instructions, processing them.
for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
OpenPOWER on IntegriCloud