aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetSchedInfo.h
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
commitcb6289a73d8caaad87da1b26f03b9b63b7b712cc (patch)
tree0147ec6af8043009d1c48cfc91d5ec0051d4942a /include/llvm/Target/TargetSchedInfo.h
parent1089790546ae7c5e8bcce99e60b19b3b23546bf3 (diff)
downloadexternal_llvm-cb6289a73d8caaad87da1b26f03b9b63b7b712cc.zip
external_llvm-cb6289a73d8caaad87da1b26f03b9b63b7b712cc.tar.gz
external_llvm-cb6289a73d8caaad87da1b26f03b9b63b7b712cc.tar.bz2
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3058 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetSchedInfo.h')
-rw-r--r--include/llvm/Target/TargetSchedInfo.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Target/TargetSchedInfo.h b/include/llvm/Target/TargetSchedInfo.h
index ba065cb..a08bd99 100644
--- a/include/llvm/Target/TargetSchedInfo.h
+++ b/include/llvm/Target/TargetSchedInfo.h
@@ -245,14 +245,14 @@ public:
inline int getMinIssueGap (MachineOpCode fromOp,
MachineOpCode toOp) const {
- std::hash_map<OpCodePair,int>::const_iterator
+ hash_map<OpCodePair,int>::const_iterator
I = issueGaps.find(OpCodePair(fromOp, toOp));
return (I == issueGaps.end())? 0 : (*I).second;
}
inline const std::vector<MachineOpCode>*
getConflictList(MachineOpCode opCode) const {
- std::hash_map<MachineOpCode, std::vector<MachineOpCode> >::const_iterator
+ hash_map<MachineOpCode, std::vector<MachineOpCode> >::const_iterator
I = conflictLists.find(opCode);
return (I == conflictLists.end())? NULL : & (*I).second;
}
@@ -286,8 +286,8 @@ protected:
unsigned numIssueDeltas;
std::vector<InstrRUsage> instrRUsages; // indexed by opcode
- std::hash_map<OpCodePair,int> issueGaps; // indexed by opcode pair
- std::hash_map<MachineOpCode, std::vector<MachineOpCode> >
+ hash_map<OpCodePair,int> issueGaps; // indexed by opcode pair
+ hash_map<MachineOpCode, std::vector<MachineOpCode> >
conflictLists; // indexed by opcode
};