From: Mike Frysinger Date: Mon, 28 Jun 2021 01:35:17 +0000 (-0400) Subject: sim: bpf: fix printf warnings on 32-bit systems X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f2ddf6e39d85c3a21f7a88f51dcaf3bbf0ddaab9;p=binutils-gdb.git sim: bpf: fix printf warnings on 32-bit systems Use PRI macros to display 64-bit types instead of assuming long is a 64-bit type itself. --- diff --git a/sim/bpf/ChangeLog b/sim/bpf/ChangeLog index 912a48aa4aa..ce383859b26 100644 --- a/sim/bpf/ChangeLog +++ b/sim/bpf/ChangeLog @@ -1,3 +1,7 @@ +2021-06-28 Mike Frysinger + + * bpf.c (bpfbf_exit): Use PRI 64 formats. + 2021-06-27 Mike Frysinger * cpu.c (bpfbf_record_trace_results): Delete function. diff --git a/sim/bpf/bpf.c b/sim/bpf/bpf.c index de77da851ee..4f057387b02 100644 --- a/sim/bpf/bpf.c +++ b/sim/bpf/bpf.c @@ -186,7 +186,7 @@ bpfbf_exit (SIM_CPU *current_cpu) /* r0 holds "return code" */ DI r0 = GET_H_GPR (0); - printf ("exit %ld (0x%lx)\n", r0, r0); + printf ("exit %" PRId64 " (0x%" PRIx64 ")\n", r0, r0); sim_engine_halt (sd, current_cpu, NULL, CPU_PC_GET (current_cpu), sim_exited, 0 /* sigrc */);