From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:36794) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt3xs-0006SI-BB for qemu-devel@nongnu.org; Thu, 02 Feb 2012 16:13:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rt3xo-0000HV-2D for qemu-devel@nongnu.org; Thu, 02 Feb 2012 16:13:08 -0500 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:40192) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt3xn-0000H7-Sm for qemu-devel@nongnu.org; Thu, 02 Feb 2012 16:13:04 -0500 From: Stefan Weil Date: Thu, 2 Feb 2012 22:12:43 +0100 Message-Id: <1328217177-32745-2-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 01/15] Remove macro HOST_LONG_SIZE List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Weil HOST_LONG_SIZE is simply the size of a pointer value. There is no need for this macro. Signed-off-by: Stefan Weil --- cpu-defs.h | 2 -- thunk.h | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/cpu-defs.h b/cpu-defs.h index 57a709b..4527cbf 100644 --- a/cpu-defs.h +++ b/cpu-defs.h @@ -60,8 +60,6 @@ typedef uint64_t target_ulong __attribute__((aligned(TARGET_LONG_ALIGNMENT))); #error TARGET_LONG_SIZE undefined #endif -#define HOST_LONG_SIZE (HOST_LONG_BITS / 8) - #define EXCP_INTERRUPT 0x10000 /* async interruption */ #define EXCP_HLT 0x10001 /* hlt instruction reached */ #define EXCP_DEBUG 0x10002 /* cpu stopped after a breakpoint or singlestep */ diff --git a/thunk.h b/thunk.h index 109c541..9810743 100644 --- a/thunk.h +++ b/thunk.h @@ -99,7 +99,7 @@ static inline int thunk_type_size(const argtype *type_ptr, int is_host) case TYPE_PTRVOID: case TYPE_PTR: if (is_host) { - return HOST_LONG_SIZE; + return sizeof(void *); } else { return TARGET_ABI_BITS / 8; } @@ -136,7 +136,7 @@ static inline int thunk_type_align(const argtype *type_ptr, int is_host) case TYPE_PTRVOID: case TYPE_PTR: if (is_host) { - return HOST_LONG_SIZE; + return sizeof(void *); } else { return TARGET_ABI_BITS / 8; } -- 1.7.7.3