]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/arm: Consistently use finalize_memop_asimd() for ASIMD loads/stores
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 19 Jun 2023 10:20:19 +0000 (11:20 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 19 Jun 2023 10:21:17 +0000 (11:21 +0100)
commit68496d4172296ff04b90e3dfbee13316615d8167
tree1dbbf5cfd12e910c9829262caadaf79d82c96aae
parent99bb43c0ff7c72ef7fa5035ff8e6151b1c08ce68
target/arm: Consistently use finalize_memop_asimd() for ASIMD loads/stores

In the recent refactoring we missed a few places which should be
calling finalize_memop_asimd() for ASIMD loads and stores but
instead are just calling finalize_memop(); fix these.

For the disas_ldst_single_struct() and disas_ldst_multiple_struct()
cases, this is not a behaviour change because there the size
is never MO_128 and the two finalize functions do the same thing.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
target/arm/tcg/translate-a64.c