diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-06-14 13:50:58 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-06-14 13:50:58 +0000 |
commit | cd3fee1b81ad3c33733ed55e20d00464cdf791f5 (patch) | |
tree | 93dad6c69e5195647413fab418ffcab217badcdc /src/arch/x86/utility.hh | |
parent | 640ab1d2e76835ecc20596d5d218b97a2ab0cf9d (diff) | |
download | gem5-cd3fee1b81ad3c33733ed55e20d00464cdf791f5.tar.xz |
Put the mode in the ExtMachInst.
--HG--
extra : convert_revision : 7fc6567ab3d35c06901e6c8a0435f7cab819e17e
Diffstat (limited to 'src/arch/x86/utility.hh')
-rw-r--r-- | src/arch/x86/utility.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/utility.hh b/src/arch/x86/utility.hh index 1c98e7fbc..ed401a519 100644 --- a/src/arch/x86/utility.hh +++ b/src/arch/x86/utility.hh @@ -79,7 +79,7 @@ namespace __hash_namespace { ((uint64_t)emi.opcode.prefixB << 8) | ((uint64_t)emi.opcode.op)) ^ emi.immediate ^ emi.displacement ^ - emi.opSize; + emi.mode ^ emi.opSize; }; }; } |