From: Gabe Black Date: Thu, 19 Jul 2007 00:43:30 +0000 (-0700) Subject: Fix the panic in the "error" format for x86, X-Git-Tag: m5_2.0_beta4~297^2~34 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=17f3da6c29f5bd2ef8ca1f2a522c3710f7d98746;p=gem5.git Fix the panic in the "error" format for x86, --HG-- extra : convert_revision : bd0715b5b63665f9160082d67c5b5d90d2405c5c --- diff --git a/src/arch/x86/isa/formats/error.isa b/src/arch/x86/isa/formats/error.isa index 8ac2ea44d..e85eff762 100644 --- a/src/arch/x86/isa/formats/error.isa +++ b/src/arch/x86/isa/formats/error.isa @@ -64,7 +64,7 @@ def template ErrorDecode {{ { - panic("X86 decoder internal error: '%%s' %%s", + panic("X86 decoder internal error: '%s' %s", %(message)s, machInst); } }};