target/arm: Fix SVE splice

While converting to gen_gvec_ool_zzzp, we lost passing
a->esz as the data argument to the function.

Backports commit dd701fafe55a78e655d4823d29226d92250a6b56
This commit is contained in:
Richard Henderson 2021-03-01 19:20:42 -05:00 committed by Lioncash
parent ccb293911f
commit 567fa21c65

View file

@ -2778,7 +2778,7 @@ static bool trans_SPLICE(DisasContext *s, arg_rprr_esz *a)
{
if (sve_access_check(s)) {
gen_gvec_ool_zzzp(s, gen_helper_sve_splice,
a->rd, a->rn, a->rm, a->pg, 0);
a->rd, a->rn, a->rm, a->pg, a->esz);
}
return true;
}