mirror of https://github.com/xemu-project/xemu.git
target/arm: Fix signed VADDV
A cut-and-paste error meant we handled signed VADDV like unsigned VADDV; fix the type used. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
c88ff88498
commit
ed5a59d61f
|
@ -1182,9 +1182,9 @@ DO_LDAVH(vrmlsldavhxsw, int32_t, int64_t, true, true)
|
|||
return ra; \
|
||||
} \
|
||||
|
||||
DO_VADDV(vaddvsb, 1, uint8_t)
|
||||
DO_VADDV(vaddvsh, 2, uint16_t)
|
||||
DO_VADDV(vaddvsw, 4, uint32_t)
|
||||
DO_VADDV(vaddvsb, 1, int8_t)
|
||||
DO_VADDV(vaddvsh, 2, int16_t)
|
||||
DO_VADDV(vaddvsw, 4, int32_t)
|
||||
DO_VADDV(vaddvub, 1, uint8_t)
|
||||
DO_VADDV(vaddvuh, 2, uint16_t)
|
||||
DO_VADDV(vaddvuw, 4, uint32_t)
|
||||
|
|
Loading…
Reference in New Issue