sim: cgen-trace: tweak printf call
authorMike Frysinger <vapier@gentoo.org>
Sun, 31 Jan 2021 22:31:25 +0000 (17:31 -0500)
committerMike Frysinger <vapier@gentoo.org>
Sun, 31 Jan 2021 22:31:44 +0000 (17:31 -0500)
GCC warns that we pass a non-string literal as the format string,
so add an explicit "%s" to make it happy.

sim/common/ChangeLog
sim/common/cgen-trace.c

index 12c00f087c83dacb1752a0613d891b089816fd43..6b07d2ff51d4e6aeba8881eefa3fda123760221a 100644 (file)
@@ -1,3 +1,7 @@
+2021-01-31  Mike Frysinger  <vapier@gentoo.org>
+
+       * cgen-trace.c (cgen_trace_insn): Add "%s" argument.
+
 2021-01-31  Stafford Horne  <shorne@gmail.com>
 
        * cgen-accfp.c (fixsfsi): Change res from unsigned32 to signed32.
index 82abad61b6c86ea694742a1ee1d3b34b555dabd0..0f18c502c637f03c136b5fe18b70f7db6521ba25 100644 (file)
@@ -169,7 +169,7 @@ cgen_trace_insn (SIM_CPU *cpu, const struct cgen_insn *opcode,
   if (CGEN_INSN_VIRTUAL_P (opcode))
     {
       trace_prefix (CPU_STATE (cpu), cpu, NULL_CIA, pc, 0,
-                   NULL, 0, CGEN_INSN_NAME (opcode));
+                   NULL, 0, "%s", CGEN_INSN_NAME (opcode));
       return;
     }