From: Mike Frysinger Date: Thu, 7 Dec 2023 04:05:19 +0000 (-0700) Subject: sim: ppc: fix -Wunused-but-set-variable warnings X-Git-Tag: binutils-2_42~663 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8958a9171486db6d4f14ff3de0165950cf24c2a1;p=thirdparty%2Fbinutils-gdb.git sim: ppc: fix -Wunused-but-set-variable warnings --- diff --git a/sim/ppc/device_table.c b/sim/ppc/device_table.c index 7d8fabd4dd5..76f522c73d4 100644 --- a/sim/ppc/device_table.c +++ b/sim/ppc/device_table.c @@ -45,7 +45,6 @@ generic_device_init_address(device *me) NULL }; const char **reg_property_name; - int nr_valid_reg_properties = 0; for (reg_property_name = reg_property_names; *reg_property_name != NULL; reg_property_name++) { @@ -73,7 +72,6 @@ generic_device_init_address(device *me) attach_space, attach_address, attach_size, access_read_write_exec, me); - nr_valid_reg_properties++; } /* if first option matches don't try for any others */ if (reg_property_name == reg_property_names)