Message ID | 20200918000500.2690937-1-richard.henderson@linaro.org |
---|---|
State | New |
Headers | show |
Series | target/arm: Fix SVE splice | expand |
Patchew URL: https://patchew.org/QEMU/20200918000500.2690937-1-richard.henderson@linaro.org/ Hi, This series failed build test on FreeBSD host. Please find the details below. The full log is available at http://patchew.org/logs/20200918000500.2690937-1-richard.henderson@linaro.org/testing.FreeBSD/?type=message. --- Email generated automatically by Patchew [https://patchew.org/]. Please send your feedback to patchew-devel@redhat.com
On Fri, 18 Sep 2020 at 01:05, Richard Henderson <richard.henderson@linaro.org> wrote: > > While converting to gen_gvec_ool_zzzp, we lost passing > a->esz as the data argument to the function. > > Fixes: 36cbb7a8e71 > Cc: qemu-stable@nongnu.org > Signed-off-by: Richard Henderson <richard.henderson@linaro.org> > --- > target/arm/translate-sve.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied to target-arm.next, thanks. -- PMM
diff --git a/target/arm/translate-sve.c b/target/arm/translate-sve.c index 8233295391..b9f9e6f4ae 100644 --- a/target/arm/translate-sve.c +++ b/target/arm/translate-sve.c @@ -3182,7 +3182,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; }
While converting to gen_gvec_ool_zzzp, we lost passing a->esz as the data argument to the function. Fixes: 36cbb7a8e71 Cc: qemu-stable@nongnu.org Signed-off-by: Richard Henderson <richard.henderson@linaro.org> --- target/arm/translate-sve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)