aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2022-02-08 12:43:33 +0000
committerAlex Bennée <alex.bennee@linaro.org>2022-02-09 13:29:38 +0000
commit514f9f8eb64bfd5d6c15024db93f83bd81998de5 (patch)
tree73a39175a68ecbf7404c785050d24261c9e08d3e
parent74154d7e4a9a693313ad7639a92ff443c6258741 (diff)
downloadqemu-514f9f8eb64bfd5d6c15024db93f83bd81998de5.zip
qemu-514f9f8eb64bfd5d6c15024db93f83bd81998de5.tar.gz
qemu-514f9f8eb64bfd5d6c15024db93f83bd81998de5.tar.bz2
include/exec: fix softmmu version of TARGET_ABI_FMT_lx
TARGET_ABI_FMT_lx isn't available for softmmu which causes confusion when trying to print. As abi_ptr == target_ulong use its format string instead. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--include/exec/cpu_ldst.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/cpu_ldst.h b/include/exec/cpu_ldst.h
index a878fd0..da987fe 100644
--- a/include/exec/cpu_ldst.h
+++ b/include/exec/cpu_ldst.h
@@ -121,7 +121,7 @@ static inline bool guest_range_valid_untagged(abi_ulong start, abi_ulong len)
})
#else
typedef target_ulong abi_ptr;
-#define TARGET_ABI_FMT_ptr TARGET_ABI_FMT_lx
+#define TARGET_ABI_FMT_ptr TARGET_FMT_lx
#endif
uint32_t cpu_ldub_data(CPUArchState *env, abi_ptr ptr);