From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LQ6Vw-0007hv-5B for qemu-devel@nongnu.org; Thu, 22 Jan 2009 15:51:00 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LQ6Vu-0007gy-If for qemu-devel@nongnu.org; Thu, 22 Jan 2009 15:50:59 -0500 Received: from [199.232.76.173] (port=37434 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LQ6Vu-0007gs-9l for qemu-devel@nongnu.org; Thu, 22 Jan 2009 15:50:58 -0500 Received: from mx20.gnu.org ([199.232.41.8]:41119) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LQ6Vt-0005zN-UE for qemu-devel@nongnu.org; Thu, 22 Jan 2009 15:50:58 -0500 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LQ6Vt-0005vL-1J for qemu-devel@nongnu.org; Thu, 22 Jan 2009 15:50:57 -0500 From: Nathan Froyd Date: Thu, 22 Jan 2009 12:44:01 -0800 Message-Id: <1232657054-30100-2-git-send-email-froydnj@codesourcery.com> In-Reply-To: <1232657054-30100-1-git-send-email-froydnj@codesourcery.com> References: <1232657054-30100-1-git-send-email-froydnj@codesourcery.com> Subject: [Qemu-devel] [PATCH 01/14] Add f field to ppc_avr_t Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Nathan Froyd Signed-off-by: Nathan Froyd --- target-ppc/cpu.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index f7a12da..dafe7f3 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -308,6 +308,7 @@ struct ppc_spr_t { /* Altivec registers (128 bits) */ union ppc_avr_t { + float32 f[4]; uint8_t u8[16]; uint16_t u16[8]; uint32_t u32[4]; -- 1.6.0.5