s390x/tcg: Fix VECTOR MULTIPLY LOGICAL ODD
We have to read from odd offsets.
Fixes: 2bf3ee38f1
("s390x/tcg: Implement VECTOR MULTIPLY *")
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
Message-Id: <20191021085715.3797-2-david@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
This commit is contained in:
parent
8064af6b1d
commit
49a7ce4e03
@ -488,7 +488,7 @@ void HELPER(gvec_vmlo##BITS)(void *v1, const void *v2, const void *v3, \
|
||||
{ \
|
||||
int i, j; \
|
||||
\
|
||||
for (i = 0, j = 0; i < (128 / TBITS); i++, j += 2) { \
|
||||
for (i = 0, j = 1; i < (128 / TBITS); i++, j += 2) { \
|
||||
const uint##TBITS##_t a = s390_vec_read_element##BITS(v2, j); \
|
||||
const uint##TBITS##_t b = s390_vec_read_element##BITS(v3, j); \
|
||||
\
|
||||
|
Loading…
Reference in New Issue
Block a user