diff options
Diffstat (limited to 'include/llvm/Analysis/LiveVar/LiveVarMap.h')
-rw-r--r-- | include/llvm/Analysis/LiveVar/LiveVarMap.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/Analysis/LiveVar/LiveVarMap.h b/include/llvm/Analysis/LiveVar/LiveVarMap.h index bc00d4f..44b3bbb 100644 --- a/include/llvm/Analysis/LiveVar/LiveVarMap.h +++ b/include/llvm/Analysis/LiveVar/LiveVarMap.h @@ -12,7 +12,7 @@ #ifndef LIVE_VAR_MAP_H #define LIVE_VAR_MAP_H -#include <hash_map> +#include <ext/hash_map> class BasicBlock; class BBLiveVar; @@ -34,11 +34,11 @@ struct hashFuncBB { // sturcture containing the hash function for BB -typedef hash_map<const BasicBlock *, - BBLiveVar *, hashFuncBB > BBToBBLiveVarMapType; +typedef std::hash_map<const BasicBlock *, + BBLiveVar *, hashFuncBB > BBToBBLiveVarMapType; -typedef hash_map<const MachineInstr *, const LiveVarSet *, - hashFuncMInst> MInstToLiveVarSetMapType; +typedef std::hash_map<const MachineInstr *, const LiveVarSet *, + hashFuncMInst> MInstToLiveVarSetMapType; #endif |