summaryrefslogtreecommitdiff
path: root/src/arch/x86/types.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-07-18 17:45:43 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-07-18 17:45:43 -0700
commit776283cff8bcb01a308dbe216b515f809e053b55 (patch)
treea573e158d1f551339711dfd7009850bc3d6d0ddb /src/arch/x86/types.hh
parent05a33a443ff00c7a7b668128b6a53bd65e0305cd (diff)
downloadgem5-776283cff8bcb01a308dbe216b515f809e053b55.tar.xz
Fix the overload which prints ExtMachInst in X86.
--HG-- extra : convert_revision : 2ef8ee71999f36b09270ba9526c2846beda65051
Diffstat (limited to 'src/arch/x86/types.hh')
-rw-r--r--src/arch/x86/types.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/types.hh b/src/arch/x86/types.hh
index ef4d2e5c4..9d927679d 100644
--- a/src/arch/x86/types.hh
+++ b/src/arch/x86/types.hh
@@ -184,8 +184,8 @@ namespace X86ISA
"prefixA = %#x,\n\t\tprefixB = %#x\n\t},\n\t"
"modRM = %#x,\n\tsib = %#x,\n\t"
"immediate = %#x,\n\tdisplacement = %#x\n}\n",
- emi.legacy, (uint8_t)emi.rex,
- emi.opcode.num, emi.opcode.op,
+ (uint8_t)emi.legacy, (uint8_t)emi.rex,
+ emi.opcode.num, (uint8_t)emi.opcode.op,
emi.opcode.prefixA, emi.opcode.prefixB,
(uint8_t)emi.modRM, (uint8_t)emi.sib,
emi.immediate, emi.displacement);