diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-07-18 17:43:30 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-07-18 17:43:30 -0700 |
commit | 17f3da6c29f5bd2ef8ca1f2a522c3710f7d98746 (patch) | |
tree | 2d2ebe2adc46cde5c9eb8c8263eb7a371431a2ef /src/arch/x86/isa | |
parent | 6c54b654a880ffa83a16a043d90612bd49815de6 (diff) | |
download | gem5-17f3da6c29f5bd2ef8ca1f2a522c3710f7d98746.tar.xz |
Fix the panic in the "error" format for x86,
--HG--
extra : convert_revision : bd0715b5b63665f9160082d67c5b5d90d2405c5c
Diffstat (limited to 'src/arch/x86/isa')
-rw-r--r-- | src/arch/x86/isa/formats/error.isa | 2 |
1 files changed, 1 insertions, 1 deletions
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); } }}; |