diff options
-rw-r--r-- | target/arm/sme_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/sme_helper.c b/target/arm/sme_helper.c index d592c78ec9..e55bc51d69 100644 --- a/target/arm/sme_helper.c +++ b/target/arm/sme_helper.c @@ -949,7 +949,7 @@ void HELPER(sme_fmopa_s)(void *vza, void *vzn, void *vzm, void *vpn, if (pb & 1) { uint32_t *a = vza_row + H1_4(col); uint32_t *m = vzm + H1_4(col); - *a = float32_muladd(n, *m, *a, 0, vst); + *a = float32_muladd(n, *m, *a, 0, &fpst); } col += 4; pb >>= 4; |