From a4de6c88c9972325bb8ba89f5950fbb35b9cb4a7 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 19 Dec 2023 05:47:32 -0500 Subject: 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. --- sim/common/genmloop.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sim/common/genmloop.sh b/sim/common/genmloop.sh index e6683de..e9cb97d 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 -- cgit v1.1