diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-24 21:21:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-24 21:21:33 +0000 |
commit | 6c21f2454b585c3dd423cf00b59ba1bcbbad5d47 (patch) | |
tree | 93976f0469df71de6a647f81d7103ce5d954db40 /llvm/lib/CodeGen | |
parent | e583333ec901fefca61e159782a69cfa5fdb0bfb (diff) | |
download | bcm5719-llvm-6c21f2454b585c3dd423cf00b59ba1bcbbad5d47.tar.gz bcm5719-llvm-6c21f2454b585c3dd423cf00b59ba1bcbbad5d47.zip |
*** empty log message ***
llvm-svn: 3058
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/InstrSched/SchedPriorities.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/InstrSched/SchedPriorities.h b/llvm/lib/CodeGen/InstrSched/SchedPriorities.h index b01c1a43d68..4d763d21c5f 100644 --- a/llvm/lib/CodeGen/InstrSched/SchedPriorities.h +++ b/llvm/lib/CodeGen/InstrSched/SchedPriorities.h @@ -157,13 +157,13 @@ private: cycles_t curTime; const SchedGraph* graph; FunctionLiveVarInfo &methodLiveVarInfo; - std::hash_map<const MachineInstr*, bool> lastUseMap; + hash_map<const MachineInstr*, bool> lastUseMap; std::vector<cycles_t> nodeDelayVec; std::vector<cycles_t> nodeEarliestUseVec; std::vector<cycles_t> earliestReadyTimeForNode; cycles_t earliestReadyTime; NodeHeap candsAsHeap; // candidate nodes, ready to go - std::hash_set<const SchedGraphNode*> candsAsSet;//same entries as candsAsHeap, + hash_set<const SchedGraphNode*> candsAsSet; //same entries as candsAsHeap, // but as set for fast lookup std::vector<candIndex> mcands; // holds pointers into cands candIndex nextToTry; // next cand after the last |