mirror of https://github.com/xemu-project/xemu.git
target-mips: remove an unused argument
Remove an unused argument from decode_micromips32_opc() Signed-off-by: Yongbok Kim <yongbok.kim@imgtec.com> Reviewed-by: Leon Alrae <leon.alrae@imgtec.com> Reviewed-by: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
This commit is contained in:
parent
e60ec06357
commit
f60eeb0c5d
|
@ -13414,8 +13414,7 @@ static void gen_pool32fxf(DisasContext *ctx, int rt, int rs)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void decode_micromips32_opc (CPUMIPSState *env, DisasContext *ctx,
|
static void decode_micromips32_opc(CPUMIPSState *env, DisasContext *ctx)
|
||||||
uint16_t insn_hw1)
|
|
||||||
{
|
{
|
||||||
int32_t offset;
|
int32_t offset;
|
||||||
uint16_t insn;
|
uint16_t insn;
|
||||||
|
@ -14458,7 +14457,7 @@ static int decode_micromips_opc (CPUMIPSState *env, DisasContext *ctx)
|
||||||
generate_exception(ctx, EXCP_RI);
|
generate_exception(ctx, EXCP_RI);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
decode_micromips32_opc (env, ctx, op);
|
decode_micromips32_opc(env, ctx);
|
||||||
return 4;
|
return 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue