From e19e89a5d4e9416f054116765fc0c2674ddd371f Mon Sep 17 00:00:00 2001 From: bellard Date: Sun, 21 Mar 2004 17:08:23 +0000 Subject: more log items git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@676 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-sparc/translate.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'target-sparc') diff --git a/target-sparc/translate.c b/target-sparc/translate.c index 321b4eb..41decb1 100644 --- a/target-sparc/translate.c +++ b/target-sparc/translate.c @@ -800,14 +800,16 @@ static inline int gen_intermediate_code_internal(TranslationBlock * tb, } *gen_opc_ptr = INDEX_op_end; #ifdef DEBUG_DISAS - if (loglevel) { + if (loglevel & CPU_LOG_TB_IN_ASM) { fprintf(logfile, "--------------\n"); fprintf(logfile, "IN: %s\n", lookup_symbol((uint8_t *)pc_start)); disas(logfile, (uint8_t *)pc_start, last_pc + 4 - pc_start, 0, 0); fprintf(logfile, "\n"); - fprintf(logfile, "OP:\n"); - dump_ops(gen_opc_buf, gen_opparam_buf); - fprintf(logfile, "\n"); + if (loglevel & CPU_LOG_TB_OP) { + fprintf(logfile, "OP:\n"); + dump_ops(gen_opc_buf, gen_opparam_buf); + fprintf(logfile, "\n"); + } } #endif -- cgit v1.1