34a35
> #include "base/hashmap.hh"
90a92,102
> namespace __hash_namespace {
>
> template<>
> struct hash<PowerISA::ExtMachInst> : public hash<uint32_t> {
> size_t operator()(const PowerISA::ExtMachInst &emi) const {
> return hash<uint32_t>::operator()((uint32_t)emi);
> };
> };
>
> } // __hash_namespace namespace
>