Add a new map

llvm-svn: 9311
This commit is contained in:
Chris Lattner 2003-10-20 20:55:13 +00:00
parent dcd1466a80
commit 826afe939d
1 changed files with 3 additions and 1 deletions

View 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;