From 06a88b3b3948db72b662345ac7abf90bd1c14a44 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 8 Apr 2021 15:15:59 -0600 Subject: Avoid sequence point warning in h8300 sim GCC gives a -Wsequence-point warning for this code in the h8300 sim. The bug is that memory_size is both assigned and used in the same expression. The fix is to assign after the print. sim/h8300/ChangeLog 2021-04-08 Tom Tromey * compile.c (init_pointers): Fix sequence point warning. --- sim/h8300/ChangeLog | 4 ++++ sim/h8300/compile.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'sim/h8300') diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index cd47d25..2b2c6a7 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,5 +1,9 @@ 2021-04-08 Tom Tromey + * compile.c (init_pointers): Fix sequence point warning. + +2021-04-08 Tom Tromey + * compile.c (cmdline_location): Use new-style declaration. 2021-04-02 Mike Frysinger diff --git a/sim/h8300/compile.c b/sim/h8300/compile.c index c30a738..c8060b2 100644 --- a/sim/h8300/compile.c +++ b/sim/h8300/compile.c @@ -1624,7 +1624,8 @@ init_pointers (SIM_DESC sd) sim_io_printf (sd, "init_pointers: bad memory size %d, defaulting to %d.\n", - memory_size, memory_size = H8300S_MSIZE); + memory_size, H8300S_MSIZE); + memory_size = H8300S_MSIZE; } if (h8_get_memory_buf (sd)) -- cgit v1.1