From: Tom Musta Date: Wed, 12 Feb 2014 21:22:53 +0000 (-0600) Subject: target-ppc: Altivec 2.07: Update AVR Structure X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~1017^2~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb5275338daf1b64bf9677e0361057cfa6ff6a7d;p=sdk%2Femulator%2Fqemu.git target-ppc: Altivec 2.07: Update AVR Structure This patch updates the ppc_avr_t data structure to include elements for signed 64-bit integers and (conditionally) unsigned 128 bit integers. These elements will be in instructions models later on in this patch series. Signed-off-by: Tom Musta Signed-off-by: Alexander Graf --- diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 88c2788..7ccf4c6 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -352,6 +352,10 @@ union ppc_avr_t { int16_t s16[8]; int32_t s32[4]; uint64_t u64[2]; + int64_t s64[2]; +#ifdef CONFIG_INT128 + __uint128_t u128; +#endif }; #if !defined(CONFIG_USER_ONLY)