aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sim/common/ChangeLog4
-rw-r--r--sim/common/cgen-trace.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index c17ec96..1c0e44f 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,5 +1,9 @@
2021-05-08 Mike Frysinger <vapier@gentoo.org>
+ * cgen-trace.c (sim_cgen_disassemble_insn): Change %x to PRIxTA.
+
+2021-05-08 Mike Frysinger <vapier@gentoo.org>
+
* cgen-types.h (mode_names): Rename to ...
(cgen_mode_names): ... this.
(MODE_NAME): Use cgen_mode_names.
diff --git a/sim/common/cgen-trace.c b/sim/common/cgen-trace.c
index 649c37a..ea0399f 100644
--- a/sim/common/cgen-trace.c
+++ b/sim/common/cgen-trace.c
@@ -384,7 +384,7 @@ sim_cgen_disassemble_insn (SIM_CPU *cpu, const CGEN_INSN *insn,
if (length != insn_length)
{
- sim_io_error (sd, "unable to read address %x", pc);
+ sim_io_error (sd, "unable to read address %" PRIxTA, pc);
}
/* If the entire insn will fit into an integer, then do it. Otherwise, just