From: Michael Walle Date: Wed, 12 Sep 2012 17:48:42 +0000 (+0200) Subject: target-lm32: don't log cpu state in translation X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=608a03c1df217f2111765575a91c6448218369a7;p=qemu.git target-lm32: don't log cpu state in translation Don't dump the cpu state because it can also be enabled by the "-d cpu" parameter. Signed-off-by: Michael Walle --- diff --git a/target-lm32/translate.c b/target-lm32/translate.c index 695d9c59b2..f51ffc5e87 100644 --- a/target-lm32/translate.c +++ b/target-lm32/translate.c @@ -1027,11 +1027,6 @@ static void gen_intermediate_code_internal(CPULM32State *env, cpu_abort(env, "LM32: unaligned PC=%x\n", pc_start); } - if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { - qemu_log("-----------------------------------------\n"); - log_cpu_state(env, 0); - } - next_page_start = (pc_start & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE; lj = -1; num_insns = 0;