diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-03 19:55:43 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-03 19:55:43 +0000 |
commit | 0f6fbcbccd2ea9f3c6e3032d5903934db8c5be89 (patch) | |
tree | 72577726927bd24b782ca374c18a6aa442cffb4a /target-ppc | |
parent | ea0444b5760df265884c735d27e017be4cf9e76b (diff) |
Add f field to ppc_avr_t
Signed-off-by: Nathan Froyd <froydnj@codesourcery.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6505 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc')
-rw-r--r-- | 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 f7a12da628..dafe7f38f0 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]; |