From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50224) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHXwI-0001yW-CM for qemu-devel@nongnu.org; Thu, 05 Sep 2013 07:41:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VHXwH-0002kt-DC for qemu-devel@nongnu.org; Thu, 05 Sep 2013 07:41:30 -0400 Received: from v6.chiark.greenend.org.uk ([2001:ba8:1e3::]:32858 helo=chiark.greenend.org.uk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VHXwH-0002kK-7Z for qemu-devel@nongnu.org; Thu, 05 Sep 2013 07:41:29 -0400 From: Peter Maydell Date: Thu, 5 Sep 2013 12:41:22 +0100 Message-Id: <1378381282-16374-1-git-send-email-peter.maydell@linaro.org> Sender: Peter Maydell Subject: [Qemu-devel] [PATCH] abitypes.h: Remove incorrect ARM ABI_LLONG_ALIGNMENT List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: patches@linaro.org The ARM EABI specifies that 64 bit integers should be 8 aligned; remove our incorrect setting of 4 alignment. This has no actual effect since it only set the alignment for the 'abi_ullong' and 'abi_llong' types, which are used only inside code which is MIPS-specific, but it will avoid problems later if we use the types elsewhere. Signed-off-by: Peter Maydell --- include/exec/user/abitypes.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/exec/user/abitypes.h b/include/exec/user/abitypes.h index 008501b..80eedac 100644 --- a/include/exec/user/abitypes.h +++ b/include/exec/user/abitypes.h @@ -14,10 +14,6 @@ #define ABI_LLONG_ALIGNMENT 2 #endif -#ifdef TARGET_ARM -#define ABI_LLONG_ALIGNMENT 4 -#endif - #ifndef ABI_SHORT_ALIGNMENT #define ABI_SHORT_ALIGNMENT 2 #endif -- 1.7.9.5