aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/SparcV9/InstrSched/SchedGraph.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-24 21:21:32 +0000
committerChris Lattner <sabre@nondot.org>2002-07-24 21:21:32 +0000
commit09ff1126dab045d68be7d9e8ae7ad0601002a718 (patch)
treee4fb571d35f390670aed304ba303b5d2a55593d2 /lib/Target/SparcV9/InstrSched/SchedGraph.h
parent417d31c202bf42c1f9db1afa1d2e6730c6fbd566 (diff)
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3056 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/InstrSched/SchedGraph.h')
-rw-r--r--lib/Target/SparcV9/InstrSched/SchedGraph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/SparcV9/InstrSched/SchedGraph.h b/lib/Target/SparcV9/InstrSched/SchedGraph.h
index aa258813c3..7db22d6734 100644
--- a/lib/Target/SparcV9/InstrSched/SchedGraph.h
+++ b/lib/Target/SparcV9/InstrSched/SchedGraph.h
@@ -211,14 +211,14 @@ private:
class SchedGraph :
public NonCopyable,
- private std::hash_map<const MachineInstr*, SchedGraphNode*>
+ private hash_map<const MachineInstr*, SchedGraphNode*>
{
private:
std::vector<const BasicBlock*> bbVec; // basic blocks included in the graph
SchedGraphNode* graphRoot; // the root and leaf are not inserted
SchedGraphNode* graphLeaf; // in the hash_map (see getNumNodes())
- typedef std::hash_map<const MachineInstr*, SchedGraphNode*> map_base;
+ typedef hash_map<const MachineInstr*, SchedGraphNode*> map_base;
public:
using map_base::iterator;
using map_base::const_iterator;