From 826afe939dd6fd200ce2587943378af2cda769c4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 20 Oct 2003 20:55:13 +0000 Subject: [PATCH] Add a new map llvm-svn: 9311 --- llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h b/llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h index 7c8000dc4971..e79d58f7e4c2 100644 --- a/llvm/include/llvm/CodeGen/FunctionLiveVarInfo.h +++ b/llvm/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 MInst2LVSetAI; + hash_map MInst2LVSetAI; + + hash_map BBLiveVarInfo; // Stored Function that the data is computed with respect to const Function *M;