diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-16 11:54:37 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-08-16 11:54:37 +0000 |
commit | b11ebf64b696952e83f3dfbee8c42a5b6cb4a389 (patch) | |
tree | 1e0673e4291cd8df858f4bb4ceecb257b0ff71d8 /target-ppc/helper.c | |
parent | 90e189ece147115c66c9864fd832524543a50530 (diff) |
Replace REGX with PRIx64
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-ppc/helper.c')
-rw-r--r-- | target-ppc/helper.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target-ppc/helper.c b/target-ppc/helper.c index e049dabccb..5c85c6120a 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -2031,8 +2031,9 @@ void ppc_hw_interrupt (CPUState *env) #else /* defined (CONFIG_USER_ONLY) */ static inline void dump_syscall(CPUState *env) { - qemu_log_mask(CPU_LOG_INT, "syscall r0=" REGX " r3=" REGX " r4=" REGX - " r5=" REGX " r6=" REGX " nip=" TARGET_FMT_lx "\n", + qemu_log_mask(CPU_LOG_INT, "syscall r0=%016" PRIx64 " r3=%016" PRIx64 + " r4=%016" PRIx64 " r5=%016" PRIx64 " r6=%016" PRIx64 + " nip=" TARGET_FMT_lx "\n", ppc_dump_gpr(env, 0), ppc_dump_gpr(env, 3), ppc_dump_gpr(env, 4), ppc_dump_gpr(env, 5), ppc_dump_gpr(env, 6), env->nip); |