mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 13:41:05 +00:00
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:
parent
ccb293911f
commit
567fa21c65
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue