From: Mike Frysinger Date: Tue, 19 Dec 2023 10:47:32 +0000 (-0500) Subject: sim: common: delete unused scache in some mloop paths X-Git-Tag: binutils-2_42~475 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4de6c88c9972325bb8ba89f5950fbb35b9cb4a7;p=thirdparty%2Fbinutils-gdb.git sim: common: delete unused scache in some mloop paths The scache vars aren't used by ports in the pbb & fast codepaths, nor are they documented as inputs to the callbacks, so delete them to avoid unused variable compiler warnings. --- diff --git a/sim/common/genmloop.sh b/sim/common/genmloop.sh index e6683def463..e9cb97d07a5 100755 --- a/sim/common/genmloop.sh +++ b/sim/common/genmloop.sh @@ -1159,8 +1159,6 @@ void void @prefix@_engine_run_full (SIM_CPU *current_cpu) { - SIM_DESC current_state = CPU_STATE (current_cpu); - SCACHE *scache = CPU_SCACHE_CACHE (current_cpu); /* virtual program counter */ SEM_PC vpc; #if WITH_SEM_SWITCH_FULL @@ -1251,8 +1249,6 @@ if [ x$fast = xyes ] ; then void @prefix@_engine_run_fast (SIM_CPU *current_cpu) { - SIM_DESC current_state = CPU_STATE (current_cpu); - SCACHE *scache = CPU_SCACHE_CACHE (current_cpu); /* virtual program counter */ SEM_PC vpc; #if WITH_SEM_SWITCH_FAST