diff mbox series

target/arm: Fix SVE splice

Message ID 20200918000500.2690937-1-richard.henderson@linaro.org
State New
Headers show
Series target/arm: Fix SVE splice | expand

Commit Message

Richard Henderson Sept. 18, 2020, 12:05 a.m. UTC
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(-)

Comments

no-reply@patchew.org Sept. 18, 2020, 12:10 a.m. UTC | #1
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
Peter Maydell Oct. 1, 2020, 1:22 p.m. UTC | #2
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 mbox series

Patch

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;
 }