From patchwork Wed Mar 6 22:00:02 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Walle X-Patchwork-Id: 225664 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id F310E2C039A for ; Thu, 7 Mar 2013 09:04:25 +1100 (EST) Received: from localhost ([::1]:42817 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDMRk-00015d-5W for incoming@patchwork.ozlabs.org; Wed, 06 Mar 2013 17:04:24 -0500 Received: from eggs.gnu.org ([208.118.235.92]:54717) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDMOv-000502-FV for qemu-devel@nongnu.org; Wed, 06 Mar 2013 17:01:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UDMOt-0004jR-HW for qemu-devel@nongnu.org; Wed, 06 Mar 2013 17:01:29 -0500 Received: from ssl.serverraum.org ([88.198.40.39]:47194) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UDMOt-0004jC-BS for qemu-devel@nongnu.org; Wed, 06 Mar 2013 17:01:27 -0500 Received: from localhost (localhost [127.0.0.1]) by ssl.serverraum.org (Postfix) with ESMTP id D0CFF3F058; Wed, 6 Mar 2013 23:00:44 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail.serverraum.org Received: from ssl.serverraum.org ([127.0.0.1]) by localhost (web.serverraum.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PHjrfTw2m-oG; Wed, 6 Mar 2013 23:00:44 +0100 (CET) Received: from thanatos.fritz.box (95-89-88-22-dynip.superkabel.de [95.89.88.22]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ssl.serverraum.org (Postfix) with ESMTPSA id 7B8F33F051; Wed, 6 Mar 2013 23:00:44 +0100 (CET) From: Michael Walle To: qemu-devel@nongnu.org Date: Wed, 6 Mar 2013 23:00:02 +0100 Message-Id: <1362607209-12232-6-git-send-email-michael@walle.cc> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1362607209-12232-1-git-send-email-michael@walle.cc> References: <1362607209-12232-1-git-send-email-michael@walle.cc> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 88.198.40.39 Cc: Michael Walle Subject: [Qemu-devel] [PATCH 05/12] target-lm32: don't log cpu state in translation X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Don't dump the cpu state because it can also be enabled by the "-d cpu" parameter. Signed-off-by: Michael Walle --- target-lm32/translate.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/target-lm32/translate.c b/target-lm32/translate.c index 695d9c5..f51ffc5 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;