37a38
> #include "base/hashmap.hh"
40a42,50
> namespace __hash_namespace {
> template<>
> struct hash<ArmISA::ExtMachInst> : public hash<uint32_t> {
> size_t operator()(const ArmISA::ExtMachInst &emi) const {
> return hash<uint32_t>::operator()((uint32_t)emi);
> };
> };
> }
>