Add a new map
authorChris Lattner <sabre@nondot.org>
Mon, 20 Oct 2003 20:55:13 +0000 (20:55 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 20 Oct 2003 20:55:13 +0000 (20:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9311 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/FunctionLiveVarInfo.h

index 7c8000dc4971b3f4c118b6643e7ab26a114598e2..e79d58f7e4c2ea474a8637a4e29ae5badeb25916 100644 (file)
@@ -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;