GCC warns that we pass a non-string literal as the format string,
so add an explicit "%s" to make it happy.
+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.
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;
}