From: Gabe Black Date: Thu, 9 Oct 2008 07:05:39 +0000 (-0700) Subject: X86: Fix the debugging microops. The debug functions can't handle a string object... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e1b306fa537bd8fba4c522ee313a2915f7daec61;p=gem5.git X86: Fix the debugging microops. The debug functions can't handle a string object format. --- diff --git a/src/arch/x86/isa/microops/debug.isa b/src/arch/x86/isa/microops/debug.isa index 7456b0d4e..895e97199 100644 --- a/src/arch/x86/isa/microops/debug.isa +++ b/src/arch/x86/isa/microops/debug.isa @@ -104,7 +104,7 @@ def template MicroDebugExecute {{ %(op_decl)s %(op_rd)s if (%(cond_test)s) { - %(func)s(message + "\n"); + %(func)s("%s\n", message); } return NoFault; }