From patchwork Mon Jul 4 21:02:46 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 103168 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E6798B6F6B for ; Tue, 5 Jul 2011 07:17:10 +1000 (EST) Received: from localhost ([::1]:55328 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QdqVv-0002cR-UJ for incoming@patchwork.ozlabs.org; Mon, 04 Jul 2011 17:17:08 -0400 Received: from eggs.gnu.org ([140.186.70.92]:45429) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QdqID-0000FU-7j for qemu-devel@nongnu.org; Mon, 04 Jul 2011 17:02:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QdqIB-0004JQ-NM for qemu-devel@nongnu.org; Mon, 04 Jul 2011 17:02:56 -0400 Received: from mnementh.archaic.org.uk ([81.2.115.146]:51840) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QdqIB-0004Ig-Ab; Mon, 04 Jul 2011 17:02:55 -0400 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1QdqI2-00025N-55; Mon, 04 Jul 2011 22:02:46 +0100 From: Peter Maydell To: qemu-devel@nongnu.org Date: Mon, 4 Jul 2011 22:02:46 +0100 Message-Id: <1309813366-7994-1-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 81.2.115.146 Cc: qemu-trivial@nongnu.org, patches@linaro.org Subject: [Qemu-devel] [PATCH] target-alpha, target-ppc: Remove unnecessary setjmp.h include 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 Remove the include of setjmp.h from the cpu.h of target-alpha and target-ppc. This is unnecessary because cpu-defs.h already includes this header; this change brings these two targets into line with all the rest. Signed-off-by: Peter Maydell Acked-by: Alexander Graf --- target-alpha/cpu.h | 2 -- target-ppc/cpu.h | 2 -- 2 files changed, 0 insertions(+), 4 deletions(-) diff --git a/target-alpha/cpu.h b/target-alpha/cpu.h index 411bd55..78caa79 100644 --- a/target-alpha/cpu.h +++ b/target-alpha/cpu.h @@ -28,8 +28,6 @@ #include "cpu-defs.h" -#include - #include "softfloat.h" #define TARGET_HAS_ICE 1 diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 84f8ff6..d903366 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -75,8 +75,6 @@ #include "cpu-defs.h" -#include - #include "softfloat.h" #define TARGET_HAS_ICE 1