From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:36810) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt3xs-0006Sv-Q3 for qemu-devel@nongnu.org; Thu, 02 Feb 2012 16:13:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rt3xo-0000Hw-CY for qemu-devel@nongnu.org; Thu, 02 Feb 2012 16:13:08 -0500 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:40203) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt3xo-0000HJ-1O for qemu-devel@nongnu.org; Thu, 02 Feb 2012 16:13:04 -0500 From: Stefan Weil Date: Thu, 2 Feb 2012 22:12:44 +0100 Message-Id: <1328217177-32745-3-git-send-email-sw@weilnetz.de> In-Reply-To: <1328217177-32745-1-git-send-email-sw@weilnetz.de> References: <1328217177-32745-1-git-send-email-sw@weilnetz.de> Subject: [Qemu-devel] [PATCH 02/15] target-alpha: Clean includes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Weil , Richard Henderson The change in cpu.h is needed when HOST_LONG_BITS is defined in qemu-common.h. Cc: Richard Henderson Signed-off-by: Stefan Weil --- target-alpha/cpu.h | 1 + target-alpha/translate.c | 5 ----- 2 files changed, 1 insertions(+), 5 deletions(-) diff --git a/target-alpha/cpu.h b/target-alpha/cpu.h index 9d61d45..5cd6fd8 100644 --- a/target-alpha/cpu.h +++ b/target-alpha/cpu.h @@ -21,6 +21,7 @@ #define __CPU_ALPHA_H__ #include "config.h" +#include "qemu-common.h" #define TARGET_LONG_BITS 64 diff --git a/target-alpha/translate.c b/target-alpha/translate.c index a961159..1d2142b 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -17,15 +17,10 @@ * License along with this library; if not, see . */ -#include -#include -#include - #include "cpu.h" #include "disas.h" #include "host-utils.h" #include "tcg-op.h" -#include "qemu-common.h" #include "helper.h" #define GEN_HELPER 1 -- 1.7.7.3