From 776283cff8bcb01a308dbe216b515f809e053b55 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 18 Jul 2007 17:45:43 -0700 Subject: [PATCH] Fix the overload which prints ExtMachInst in X86. --HG-- extra : convert_revision : 2ef8ee71999f36b09270ba9526c2846beda65051 --- src/arch/x86/types.hh | 4 ++-- 1 file 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);