Allows to include this header without target specifics.
Signed-off-by: Pierrick Bouvier <[email protected]>
---
target/arm/tcg/arm_ldst.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/target/arm/tcg/arm_ldst.h b/target/arm/tcg/arm_ldst.h
index cee0548a1c7..0252e3b0ea9 100644
--- a/target/arm/tcg/arm_ldst.h
+++ b/target/arm/tcg/arm_ldst.h
@@ -25,14 +25,14 @@
/* Load an instruction and return it in the standard little-endian order */
static inline uint32_t arm_ldl_code(CPUARMState *env, DisasContextBase *s,
- target_ulong addr, bool sctlr_b)
+ uint64_t addr, bool sctlr_b)
{
return translator_ldl_swap(env, s, addr, bswap_code(sctlr_b));
}
/* Ditto, for a halfword (Thumb) instruction */
static inline uint16_t arm_lduw_code(CPUARMState *env, DisasContextBase* s,
- target_ulong addr, bool sctlr_b)
+ uint64_t addr, bool sctlr_b)
{
#ifndef CONFIG_USER_ONLY
/* In big-endian (BE32) mode, adjacent Thumb instructions have been swapped
--
2.47.3