33a34,35
> #include <unordered_map>
>
36d37
< #include "base/hashmap.hh"
49c50
< typedef m5::hash_map<TheISA::ExtMachInst, StaticInstPtr> InstMap;
---
> typedef std::unordered_map<TheISA::ExtMachInst, StaticInstPtr> InstMap;
61c62
< typedef typename m5::hash_map<Addr, CachePage *> PageMap;
---
> typedef typename std::unordered_map<Addr, CachePage *> PageMap;
78c79
< /// actually look in the hash_map.
---
> /// actually look in the hash map.