aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-24 21:21:33 +0000
committerChris Lattner <sabre@nondot.org>2002-07-24 21:21:33 +0000
commit1089790546ae7c5e8bcce99e60b19b3b23546bf3 (patch)
tree34a90d36995d43e23e5cf982b8be7bc8e5b8ab7e /lib/CodeGen
parent09ff1126dab045d68be7d9e8ae7ad0601002a718 (diff)
Non-standard hash classes are not in the std:: namespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3057 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/RegAlloc/LiveRangeInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAlloc/LiveRangeInfo.h b/lib/CodeGen/RegAlloc/LiveRangeInfo.h
index 9fc3c64fe9..0ae5b34178 100644
--- a/lib/CodeGen/RegAlloc/LiveRangeInfo.h
+++ b/lib/CodeGen/RegAlloc/LiveRangeInfo.h
@@ -31,7 +31,7 @@ class Value;
class Function;
class Instruction;
-typedef std::hash_map<const Value*, LiveRange*> LiveRangeMapType;
+typedef hash_map<const Value*, LiveRange*> LiveRangeMapType;
typedef std::vector<MachineInstr*> CallRetInstrListType;
//----------------------------------------------------------------------------