]> git.proxmox.com Git - qemu.git/blobdiff - tcg/arm/tcg-target.c
tcg: Change tcg_out_ld/st offset to intptr_t
[qemu.git] / tcg / arm / tcg-target.c
index e93c67f74d46995e768f60ab45440f1026851358..5d2db3648b39b0ec1968f1ce6fe50ca1964a7b0a 100644 (file)
@@ -2065,13 +2065,13 @@ static void tcg_target_init(TCGContext *s)
 }
 
 static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg arg,
-                              TCGReg arg1, tcg_target_long arg2)
+                              TCGReg arg1, intptr_t arg2)
 {
     tcg_out_ld32u(s, COND_AL, arg, arg1, arg2);
 }
 
 static inline void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg,
-                              TCGReg arg1, tcg_target_long arg2)
+                              TCGReg arg1, intptr_t arg2)
 {
     tcg_out_st32(s, COND_AL, arg, arg1, arg2);
 }