From patchwork Thu Feb 21 04:24:58 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 222183 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 E98092C008E for ; Thu, 21 Feb 2013 16:39:11 +1100 (EST) Received: from localhost ([::1]:47174 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8Njw-0000QL-Uv for incoming@patchwork.ozlabs.org; Wed, 20 Feb 2013 23:26:36 -0500 Received: from eggs.gnu.org ([208.118.235.92]:34326) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8NjD-0007Ph-8f for qemu-devel@nongnu.org; Wed, 20 Feb 2013 23:25:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U8Niy-0002BD-4H for qemu-devel@nongnu.org; Wed, 20 Feb 2013 23:25:51 -0500 Received: from cantor2.suse.de ([195.135.220.15]:49350 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U8Nix-0002Az-UH; Wed, 20 Feb 2013 23:25:36 -0500 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 6C8D8A5207; Thu, 21 Feb 2013 05:25:35 +0100 (CET) From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Date: Thu, 21 Feb 2013 05:24:58 +0100 Message-Id: <1361420711-15698-3-git-send-email-afaerber@suse.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1361420711-15698-1-git-send-email-afaerber@suse.de> References: <1361420711-15698-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x X-Received-From: 195.135.220.15 Cc: "open list:PowerPC" , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Alexander Graf Subject: [Qemu-devel] [PATCH v2 02/15] target-ppc: Move PPC_DUMP_CPU to translate.c 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 There's an opcode handler field dependent on PPC_DUMP_CPU without which the build fails. Signed-off-by: Andreas Färber --- target-ppc/translate.c | 1 + target-ppc/translate_init.c | 1 - 2 Dateien geändert, 1 Zeile hinzugefügt(+), 1 Zeile entfernt(-) diff --git a/target-ppc/translate.c b/target-ppc/translate.c index 2ac5794..2e74e45 100644 --- a/target-ppc/translate.c +++ b/target-ppc/translate.c @@ -33,6 +33,7 @@ /* Include definitions for instructions classes and implementations flags */ //#define PPC_DEBUG_DISAS +#undef PPC_DUMP_CPU //#define DO_PPC_STATISTICS #ifdef PPC_DEBUG_DISAS diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c index 181bd99..74d93a4 100644 --- a/target-ppc/translate_init.c +++ b/target-ppc/translate_init.c @@ -30,7 +30,6 @@ #include "sysemu/arch_init.h" #include "sysemu/cpus.h" -//#define PPC_DUMP_CPU //#define PPC_DEBUG_SPR //#define PPC_DUMP_SPR_ACCESSES #if defined(CONFIG_USER_ONLY)