From: Marcelo Tosatti Date: Tue, 23 Mar 2010 16:37:10 +0000 (-0300) Subject: target-i386: print EFER in cpu_dump_state X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b5e5a934174ade5dcfc98a41f21f8a6c4816dd54;p=qemu.git target-i386: print EFER in cpu_dump_state Signed-off-by: Marcelo Tosatti Signed-off-by: Avi Kivity --- diff --git a/target-i386/helper.c b/target-i386/helper.c index 3835835103..c9508a8169 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -356,6 +356,7 @@ void cpu_dump_state(CPUState *env, FILE *f, cc_op_name); } } + cpu_fprintf(f, "EFER=%016" PRIx64 "\n", env->efer); if (flags & X86_DUMP_FPU) { int fptag; fptag = 0;