On 2015-06-23 16:38, Yongbok Kim wrote: > remove an unused argument from decode_micromips32_opc() > > Signed-off-by: Yongbok Kim <yongbok....@imgtec.com> > Reviewed-by: Leon Alrae <leon.al...@imgtec.com> > --- > target-mips/translate.c | 5 ++--- > 1 files changed, 2 insertions(+), 3 deletions(-) > > diff --git a/target-mips/translate.c b/target-mips/translate.c > index 963ff8b..83dfb2f 100644 > --- a/target-mips/translate.c > +++ b/target-mips/translate.c > @@ -13404,8 +13404,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; > @@ -14448,7 +14447,7 @@ static int decode_micromips_opc (CPUMIPSState *env, > DisasContext *ctx) > generate_exception(ctx, EXCP_RI); > break; > default: > - decode_micromips32_opc (env, ctx, op); > + decode_micromips32_opc(env, ctx); > return 4; > }
Reviewed-by: Aurelien Jarno <aurel...@aurel32.net> -- Aurelien Jarno GPG: 4096R/1DDD8C9B aurel...@aurel32.net http://www.aurel32.net