diff options
Diffstat (limited to 'src/cpu/inorder/cpu.hh')
-rw-r--r-- | src/cpu/inorder/cpu.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/inorder/cpu.hh b/src/cpu/inorder/cpu.hh index af2fa5ced..c4a38d071 100644 --- a/src/cpu/inorder/cpu.hh +++ b/src/cpu/inorder/cpu.hh @@ -300,9 +300,9 @@ class InOrderCPU : public BaseCPU typedef uint32_t SkedID; /** Cache of Instruction Schedule using the instruction's name as a key */ - static std::map<SkedID, ThePipeline::RSkedPtr> skedCache; + static m5::hash_map<SkedID, ThePipeline::RSkedPtr> skedCache; - typedef std::map<SkedID, ThePipeline::RSkedPtr>::iterator SkedCacheIt; + typedef m5::hash_map<SkedID, ThePipeline::RSkedPtr>::iterator SkedCacheIt; /** Initialized to last iterator in map, signifying a invalid entry on map searches |