From patchwork Fri Dec 11 21:23:52 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 40947 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 40807B7B6B for ; Sat, 12 Dec 2009 12:50:27 +1100 (EST) Received: from localhost ([127.0.0.1]:44585 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NJH7o-00052y-Hn for incoming@patchwork.ozlabs.org; Fri, 11 Dec 2009 20:50:24 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NJGi0-0007uv-RF for qemu-devel@nongnu.org; Fri, 11 Dec 2009 20:23:44 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NJGhs-0007nN-7l for qemu-devel@nongnu.org; Fri, 11 Dec 2009 20:23:36 -0500 Received: from [199.232.76.173] (port=54747 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NJGhp-0007mI-Bs for qemu-devel@nongnu.org; Fri, 11 Dec 2009 20:23:33 -0500 Received: from are.twiddle.net ([75.149.56.221]:43445) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NJGho-00036O-3U for qemu-devel@nongnu.org; Fri, 11 Dec 2009 20:23:32 -0500 Received: by are.twiddle.net (Postfix, from userid 5000) id C2E84D39; Fri, 11 Dec 2009 17:23:30 -0800 (PST) Message-Id: <0e6d814b8a6e65ef89231acb413065cf06a1ed68.1260580414.git.rth@twiddle.net> In-Reply-To: References: From: Richard Henderson Date: Fri, 11 Dec 2009 13:23:52 -0800 To: qemu-devel@nongnu.org MIME-Version: 1.0 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: [Qemu-devel] [PATCH 12/13] alpha: Fix double log_cpu_state. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The proper logging is handled by generic code. Signed-off-by: Richard Henderson --- target-alpha/translate.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/target-alpha/translate.c b/target-alpha/translate.c index 3773ab4..e426677 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -2648,7 +2648,6 @@ static inline void gen_intermediate_code_internal(CPUState *env, tb->icount = num_insns; } #ifdef DEBUG_DISAS - log_cpu_state_mask(CPU_LOG_TB_CPU, env, 0); if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) { qemu_log("IN: %s\n", lookup_symbol(pc_start)); log_target_disas(pc_start, ctx.pc - pc_start, 1);