[llvm-commits] CVS: llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h
Chris Lattner
lattner at cs.uiuc.edu
Mon Oct 20 15:56:02 PDT 2003
Changes in directory llvm/include/llvm/CodeGen:
FunctionLiveVarInfo.h updated: 1.30 -> 1.31
---
Log message:
Add a new map
---
Diffs of the changes: (+3 -1)
Index: llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h
diff -u llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h:1.30 llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h:1.31
--- llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h:1.30 Mon Oct 20 15:19:22 2003
+++ llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h Mon Oct 20 15:55:13 2003
@@ -49,7 +49,9 @@
// 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;
More information about the llvm-commits
mailing list