summaryrefslogtreecommitdiff
path: root/src/arch/arm/types.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/types.hh')
-rw-r--r--src/arch/arm/types.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/arm/types.hh b/src/arch/arm/types.hh
index eb9a9e801..0611232c4 100644
--- a/src/arch/arm/types.hh
+++ b/src/arch/arm/types.hh
@@ -741,10 +741,10 @@ namespace std {
template<>
struct hash<ArmISA::ExtMachInst> :
- public hash<ArmISA::ExtMachInst::__DataType> {
+ public hash<ArmISA::ExtMachInst::__StorageType> {
size_t operator()(const ArmISA::ExtMachInst &emi) const {
- return hash<ArmISA::ExtMachInst::__DataType>::operator()(emi);
+ return hash<ArmISA::ExtMachInst::__StorageType>::operator()(emi);
}
};