From: Gabe Black Date: Thu, 19 Jul 2007 00:45:43 +0000 (-0700) Subject: Fix the overload which prints ExtMachInst in X86. X-Git-Tag: m5_2.0_beta4~297^2~31 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=776283cff8bcb01a308dbe216b515f809e053b55;p=gem5.git Fix the overload which prints ExtMachInst in X86. --HG-- extra : convert_revision : 2ef8ee71999f36b09270ba9526c2846beda65051 --- 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);