diff options
author | Richard Henderson <rth@twiddle.net> | 2016-04-20 11:39:35 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2016-06-05 09:26:24 -0700 |
commit | 4910e6e42e5827ccc10791eef8bc98e1cb3e1adf (patch) | |
tree | 7f8ddee9e0a7176d4bbdae29a62e0d8d5e18a785 /target-ppc | |
parent | 6b3532b20b787cbd697a68b383232f5c3b39bd1e (diff) | |
download | qemu-4910e6e42e5827ccc10791eef8bc98e1cb3e1adf.zip |
target-*: dfilter support for in_asm
The arm target was handled by 06486077, but other targets
were ignored. This handles all the rest which actually support
disassembly (that is, skipping moxie and tilegx).
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/translate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target-ppc/translate.c b/target-ppc/translate.c index fe10bf8774..123e42fe6b 100644 --- a/target-ppc/translate.c +++ b/target-ppc/translate.c @@ -11642,7 +11642,8 @@ void gen_intermediate_code(CPUPPCState *env, struct TranslationBlock *tb) tb->icount = num_insns; #if defined(DEBUG_DISAS) - if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { + if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM) + && qemu_log_in_addr_range(pc_start)) { int flags; flags = env->bfd_mach; flags |= ctx.le_mode << 16; |