mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 19:33:39 +08:00
target/mips: Honor CPU_DUMP_FPU
Cc: Aurelien Jarno <aurelien@aurel32.net> Cc: Yongbok Kim <yongbok.kim@mips.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
a68d82b8ad
commit
1cc5af6902
@ -20446,8 +20446,9 @@ void mips_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
|
||||
env->CP0_Config2, env->CP0_Config3);
|
||||
cpu_fprintf(f, " Config4 0x%08x Config5 0x%08x\n",
|
||||
env->CP0_Config4, env->CP0_Config5);
|
||||
if (env->hflags & MIPS_HFLAG_FPU)
|
||||
if ((flags & CPU_DUMP_FPU) && (env->hflags & MIPS_HFLAG_FPU)) {
|
||||
fpu_dump_state(env, f, cpu_fprintf, flags);
|
||||
}
|
||||
}
|
||||
|
||||
void mips_tcg_init(void)
|
||||
|
Loading…
Reference in New Issue
Block a user