sim: m32r: cleanup unused variables

We've been building this file with -Wno-error, so clean up unused
variable warnings.
This commit is contained in:
Mike Frysinger 2024-01-10 21:56:58 -05:00
parent f0f0b063f0
commit c66061f403

View File

@ -141,7 +141,6 @@ static void *
t2h_addr (host_callback *cb, struct cb_syscall *sc, t2h_addr (host_callback *cb, struct cb_syscall *sc,
unsigned long taddr) unsigned long taddr)
{ {
void *addr;
SIM_DESC sd = (SIM_DESC) sc->p1; SIM_DESC sd = (SIM_DESC) sc->p1;
SIM_CPU *cpu = (SIM_CPU *) sc->p2; SIM_CPU *cpu = (SIM_CPU *) sc->p2;
@ -220,7 +219,7 @@ m32r_trap (SIM_CPU *current_cpu, PCADDR pc, int num)
{ {
CB_SYSCALL s; CB_SYSCALL s;
unsigned int func, arg1, arg2, arg3, arg4, arg5, arg6, arg7; unsigned int func, arg1, arg2, arg3, arg4, arg5, arg6, arg7;
int result, result2, errcode; int result, errcode;
if (STATE_ENVIRONMENT (sd) != USER_ENVIRONMENT) if (STATE_ENVIRONMENT (sd) != USER_ENVIRONMENT)
goto case_default; goto case_default;
@ -250,7 +249,6 @@ m32r_trap (SIM_CPU *current_cpu, PCADDR pc, int num)
s.write_mem = sim_syscall_write_mem; s.write_mem = sim_syscall_write_mem;
result = 0; result = 0;
result2 = 0;
errcode = 0; errcode = 0;
switch (func) switch (func)