diff --git a/qemu/include/exec/exec-all.h b/qemu/include/exec/exec-all.h index 2e15a738..d363960e 100644 --- a/qemu/include/exec/exec-all.h +++ b/qemu/include/exec/exec-all.h @@ -31,8 +31,10 @@ type. */ #if defined(CONFIG_USER_ONLY) typedef abi_ulong tb_page_addr_t; +#define TB_PAGE_ADDR_FMT TARGET_ABI_FMT_lx #else typedef ram_addr_t tb_page_addr_t; +#define TB_PAGE_ADDR_FMT RAM_ADDR_FMT #endif #include "qemu/log.h" diff --git a/qemu/translate-all.c b/qemu/translate-all.c index 8cb7633f..f79f8f48 100644 --- a/qemu/translate-all.c +++ b/qemu/translate-all.c @@ -1250,8 +1250,7 @@ static inline void tb_alloc_page(struct uc_struct *uc, TranslationBlock *tb, mprotect(g2h(page_addr), uc->qemu_host_page_size, (prot & PAGE_BITS) & ~PAGE_WRITE); #ifdef DEBUG_TB_INVALIDATE - printf("protecting code page: 0x" TARGET_FMT_lx "\n", - page_addr); + printf("protecting code page: 0x" TB_PAGE_ADDR_FMT "\n", page_addr); #endif } #else