From: Chris Lattner Date: Mon, 20 Oct 2003 20:55:13 +0000 (+0000) Subject: Add a new map X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5f7e61d226618a2a92b4d1a1e05af7f1a7d9acc7;p=oota-llvm.git Add a new map git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9311 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/FunctionLiveVarInfo.h b/include/llvm/CodeGen/FunctionLiveVarInfo.h index 7c8000dc497..e79d58f7e4c 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 MInst2LVSetAI; + hash_map MInst2LVSetAI; + + hash_map BBLiveVarInfo; // Stored Function that the data is computed with respect to const Function *M;