From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:41071) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3azQ-0008Tv-99 for qemu-devel@nongnu.org; Fri, 02 Mar 2012 17:30:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S3azO-0000AD-Bo for qemu-devel@nongnu.org; Fri, 02 Mar 2012 17:30:15 -0500 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:41024) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3azO-00009i-5X for qemu-devel@nongnu.org; Fri, 02 Mar 2012 17:30:14 -0500 From: Stefan Weil Date: Fri, 2 Mar 2012 23:30:03 +0100 Message-Id: <1330727407-24014-3-git-send-email-sw@weilnetz.de> In-Reply-To: <1330727407-24014-1-git-send-email-sw@weilnetz.de> References: <1330727407-24014-1-git-send-email-sw@weilnetz.de> Subject: [Qemu-devel] [PATCH 2/6] tcg: Rearrange definitions and include statements List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Weil This change makes tcg_target_ulong available in tcg-target.h. Signed-off-by: Stefan Weil --- tcg/tcg.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tcg/tcg.h b/tcg/tcg.h index 5c28239..cc223ea 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -32,9 +32,6 @@ # error Unknown pointer size for tcg target #endif -#include "tcg-target.h" -#include "tcg-runtime.h" - #if TCG_TARGET_REG_BITS == 32 typedef int32_t tcg_target_long; typedef uint32_t tcg_target_ulong; @@ -49,6 +46,9 @@ typedef uint64_t tcg_target_ulong; #error unsupported #endif +#include "tcg-target.h" +#include "tcg-runtime.h" + #if TCG_TARGET_NB_REGS <= 32 typedef uint32_t TCGRegSet; #elif TCG_TARGET_NB_REGS <= 64 -- 1.7.9