summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-20 20:55:13 +0000
committerChris Lattner <sabre@nondot.org>2003-10-20 20:55:13 +0000
commit5f7e61d226618a2a92b4d1a1e05af7f1a7d9acc7 (patch)
tree665b5f8d194bac6a792857a6ecdde648f15dc0ae /include
parente9d3c6b919570121d11bbc88cd03dea8b9a23837 (diff)
downloadllvm-5f7e61d226618a2a92b4d1a1e05af7f1a7d9acc7.tar.gz
llvm-5f7e61d226618a2a92b4d1a1e05af7f1a7d9acc7.tar.bz2
llvm-5f7e61d226618a2a92b4d1a1e05af7f1a7d9acc7.tar.xz
Add a new map
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9311 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/FunctionLiveVarInfo.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/FunctionLiveVarInfo.h b/include/llvm/CodeGen/FunctionLiveVarInfo.h
index 7c8000dc49..e79d58f7e4 100644
--- a/include/llvm/CodeGen/FunctionLiveVarInfo.h
+++ b/include/llvm/CodeGen/FunctionLiveVarInfo.h
@@ -49,7 +49,9 @@ class FunctionLiveVarInfo : public FunctionPass {
// Machine Instr to LiveVarSet Map for providing LVset AFTER each inst.
// These sets are just pointers to sets in MInst2LVSetBI or BBLiveVar.
- hash_map<const MachineInstr *, ValueSet *> MInst2LVSetAI;
+ hash_map<const MachineInstr *, ValueSet *> MInst2LVSetAI;
+
+ hash_map<const BasicBlock*, BBLiveVar*> BBLiveVarInfo;
// Stored Function that the data is computed with respect to
const Function *M;