diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-03-14 17:25:06 -0700 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-03-16 08:43:10 +0100 |
commit | 46697cb96e1cc6c3f1edbe572cee1ce9ac97cc58 (patch) | |
tree | 216591a6b3e9b34068f74424db615716a5175fe3 /accel/tcg | |
parent | 5e2d19b3cd18184dde9a4793c3fbd8283ebffdfc (diff) | |
download | qemu-46697cb96e1cc6c3f1edbe572cee1ce9ac97cc58.zip qemu-46697cb96e1cc6c3f1edbe572cee1ce9ac97cc58.tar.gz qemu-46697cb96e1cc6c3f1edbe572cee1ce9ac97cc58.tar.bz2 |
accel/tcg: Fix cpu_ldq_be_mmu typo
In the conversion to cpu_ld_*_mmu, the retaddr parameter
was corrupted in the one case of cpu_ldq_be_mmu.
Fixes: f83bcecb1 ("accel/tcg: Add cpu_{ld,st}*_mmu interfaces")
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/902
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220315002506.152030-1-richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'accel/tcg')
-rw-r--r-- | accel/tcg/cputlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c index 3b918fe..2035b2a 100644 --- a/accel/tcg/cputlb.c +++ b/accel/tcg/cputlb.c @@ -2174,7 +2174,7 @@ uint32_t cpu_ldl_be_mmu(CPUArchState *env, abi_ptr addr, uint64_t cpu_ldq_be_mmu(CPUArchState *env, abi_ptr addr, MemOpIdx oi, uintptr_t ra) { - return cpu_load_helper(env, addr, oi, MO_BEUQ, helper_be_ldq_mmu); + return cpu_load_helper(env, addr, oi, ra, helper_be_ldq_mmu); } uint16_t cpu_ldw_le_mmu(CPUArchState *env, abi_ptr addr, |