mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-23 07:01:03 +00:00
target-mips: remove an unused argument
Remove an unused argument from decode_micromips32_opc() Backports commit f60eeb0c5ddd8ceb8ca6b3ba032159027afab67a from qemu
This commit is contained in:
parent
9750bc546f
commit
14abf22311
|
@ -13500,8 +13500,7 @@ static void gen_pool32fxf(DisasContext *ctx, int rt, int rs)
|
|||
}
|
||||
}
|
||||
|
||||
static void decode_micromips32_opc (CPUMIPSState *env, DisasContext *ctx,
|
||||
uint16_t insn_hw1)
|
||||
static void decode_micromips32_opc(CPUMIPSState *env, DisasContext *ctx)
|
||||
{
|
||||
int32_t offset;
|
||||
uint16_t insn;
|
||||
|
@ -14554,7 +14553,7 @@ static int decode_micromips_opc (CPUMIPSState *env, DisasContext *ctx, bool *ins
|
|||
generate_exception(ctx, EXCP_RI);
|
||||
break;
|
||||
default:
|
||||
decode_micromips32_opc (env, ctx, op);
|
||||
decode_micromips32_opc(env, ctx);
|
||||
return 4;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue