From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50956) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eewAw-0003OG-Fr for qemu-devel@nongnu.org; Fri, 26 Jan 2018 00:03:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eewAv-00006j-O1 for qemu-devel@nongnu.org; Fri, 26 Jan 2018 00:03:42 -0500 Received: from mail-pf0-x243.google.com ([2607:f8b0:400e:c00::243]:45153) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eewAv-00006K-IU for qemu-devel@nongnu.org; Fri, 26 Jan 2018 00:03:41 -0500 Received: by mail-pf0-x243.google.com with SMTP id a88so7490980pfe.12 for ; Thu, 25 Jan 2018 21:03:41 -0800 (PST) From: Richard Henderson Date: Thu, 25 Jan 2018 20:57:33 -0800 Message-Id: <20180126045742.5487-12-richard.henderson@linaro.org> In-Reply-To: <20180126045742.5487-1-richard.henderson@linaro.org> References: <20180126045742.5487-1-richard.henderson@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v11 11/20] target/arm: Align vector registers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org Reviewed-by: Alex Bennée Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- target/arm/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/arm/cpu.h b/target/arm/cpu.h index d2bb59eded..8d41f783dc 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -492,7 +492,7 @@ typedef struct CPUARMState { * the two execution states, and means we do not need to explicitly * map these registers when changing states. */ - uint64_t regs[64]; + uint64_t regs[64] QEMU_ALIGNED(16); uint32_t xregs[16]; /* We store these fpcsr fields separately for convenience. */ -- 2.14.3