From: Richard Henderson Date: Wed, 30 Jun 2021 15:31:46 +0000 (-0700) Subject: accel/tcg: Log tb->cflags with -d exec X-Git-Tag: v6.1.0-rc0~27^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7eabad361979bbf76dff4d91bc7af35e309c8c26;p=thirdparty%2Fqemu.git accel/tcg: Log tb->cflags with -d exec Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/accel/tcg/cpu-exec.c b/accel/tcg/cpu-exec.c index 67ed25beb99..e22bcb99f70 100644 --- a/accel/tcg/cpu-exec.c +++ b/accel/tcg/cpu-exec.c @@ -183,9 +183,9 @@ static inline void log_cpu_exec(target_ulong pc, CPUState *cpu, qemu_log_mask(CPU_LOG_EXEC, "Trace %d: %p [" TARGET_FMT_lx - "/" TARGET_FMT_lx "/%#x] %s\n", - cpu->cpu_index, tb->tc.ptr, tb->cs_base, pc, tb->flags, - lookup_symbol(pc)); + "/" TARGET_FMT_lx "/%08x/%08x] %s\n", + cpu->cpu_index, tb->tc.ptr, tb->cs_base, pc, + tb->flags, tb->cflags, lookup_symbol(pc)); #if defined(DEBUG_DISAS) if (qemu_loglevel_mask(CPU_LOG_TB_CPU)) {