From: Stefan Weil Date: Fri, 2 Apr 2010 21:19:48 +0000 (+0200) Subject: target-mips: Fix one more format specifier for cpu_fprintf X-Git-Tag: v0.13.0-rc0~842 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a7200c9f9889f681bdcdd0b68a5cf37471bc4327;p=thirdparty%2Fqemu.git target-mips: Fix one more format specifier for cpu_fprintf env->bcond must be printed using TARGET_FMT_ld. Signed-off-by: Stefan Weil Signed-off-by: Aurelien Jarno --- diff --git a/target-mips/translate.c b/target-mips/translate.c index 3f0543732a6..64da0884971 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -9633,7 +9633,9 @@ void cpu_dump_state (CPUState *env, FILE *f, { int i; - cpu_fprintf(f, "pc=0x" TARGET_FMT_lx " HI=0x" TARGET_FMT_lx " LO=0x" TARGET_FMT_lx " ds %04x " TARGET_FMT_lx " %d\n", + cpu_fprintf(f, "pc=0x" TARGET_FMT_lx " HI=0x" TARGET_FMT_lx + " LO=0x" TARGET_FMT_lx " ds %04x " + TARGET_FMT_lx " " TARGET_FMT_ld "\n", env->active_tc.PC, env->active_tc.HI[0], env->active_tc.LO[0], env->hflags, env->btarget, env->bcond); for (i = 0; i < 32; i++) {