diff options
| author | Richard Henderson | 2012-09-24 23:55:47 +0200 |
|---|---|---|
| committer | Aurelien Jarno | 2012-09-27 21:38:50 +0200 |
| commit | fdefe51c288866b98e62663fa18c8af1d66bf5f6 (patch) | |
| tree | 5560732a1024bda244f79a515e6097ae87ffc9d1 /target-alpha | |
| parent | tci: Fix for AREG0 free mode (diff) | |
| download | qemu-fdefe51c288866b98e62663fa18c8af1d66bf5f6.tar.gz qemu-fdefe51c288866b98e62663fa18c8af1d66bf5f6.tar.xz qemu-fdefe51c288866b98e62663fa18c8af1d66bf5f6.zip | |
Emit debug_insn for CPU_LOG_TB_OP_OPT as well.
For all targets that currently call tcg_gen_debug_insn_start,
add CPU_LOG_TB_OP_OPT to the condition that gates it.
This is useful for comparing optimization dumps, when the
pre-optimization dump is merely noise.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-alpha')
| -rw-r--r-- | target-alpha/translate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-alpha/translate.c b/target-alpha/translate.c index 3f9aee12d4..f707d8deb9 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -3421,7 +3421,7 @@ static inline void gen_intermediate_code_internal(CPUAlphaState *env, insn = cpu_ldl_code(env, ctx.pc); num_insns++; - if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP))) { + if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT))) { tcg_gen_debug_insn_start(ctx.pc); } |
