mirror of https://github.com/xemu-project/xemu.git
target/arm: Use TRANS_FEAT for SEL_zpzz
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20220527181907.189259-82-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
738b679cc9
commit
29693f5f97
|
@ -795,10 +795,7 @@ static gen_helper_gvec_4 * const udiv_fns[4] = {
|
|||
};
|
||||
TRANS_FEAT(UDIV_zpzz, aa64_sve, gen_gvec_ool_arg_zpzz, udiv_fns[a->esz], a, 0)
|
||||
|
||||
static bool trans_SEL_zpzz(DisasContext *s, arg_rprr_esz *a)
|
||||
{
|
||||
return do_sel_z(s, a->rd, a->rn, a->rm, a->pg, a->esz);
|
||||
}
|
||||
TRANS_FEAT(SEL_zpzz, aa64_sve, do_sel_z, a->rd, a->rn, a->rm, a->pg, a->esz)
|
||||
|
||||
/*
|
||||
*** SVE Integer Arithmetic - Unary Predicated Group
|
||||
|
|
Loading…
Reference in New Issue