target/arm: More use of gen_gvec_fn_arg_zzz
Two uses of gen_gvec_fn_zzz can pass on arg_rrr_esz instead. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20220527181907.189259-33-richard.henderson@linaro.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
cd54bbe662
commit
f96aae7649
@ -6425,7 +6425,7 @@ static bool trans_MUL_zzz(DisasContext *s, arg_rrr_esz *a)
|
||||
if (!dc_isar_feature(aa64_sve2, s)) {
|
||||
return false;
|
||||
}
|
||||
return gen_gvec_fn_zzz(s, tcg_gen_gvec_mul, a->esz, a->rd, a->rn, a->rm);
|
||||
return gen_gvec_fn_arg_zzz(s, tcg_gen_gvec_mul, a);
|
||||
}
|
||||
|
||||
static gen_helper_gvec_3 * const smulh_zzz_fns[4] = {
|
||||
@ -6946,7 +6946,7 @@ static bool do_sve2_fn_zzz(DisasContext *s, arg_rrr_esz *a, GVecGen3Fn *fn)
|
||||
if (!dc_isar_feature(aa64_sve2, s)) {
|
||||
return false;
|
||||
}
|
||||
return gen_gvec_fn_zzz(s, fn, a->esz, a->rd, a->rn, a->rm);
|
||||
return gen_gvec_fn_arg_zzz(s, fn, a);
|
||||
}
|
||||
|
||||
static bool trans_SABA(DisasContext *s, arg_rrr_esz *a)
|
||||
|
Loading…
Reference in New Issue
Block a user