diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-04-29 21:26:53 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-04-29 21:26:53 +0000 |
commit | d014c98c8dce88c3b6cc19bd2e0e558900f5c1d0 (patch) | |
tree | 89cb45f50dcf91a6445f6aa312cd8ac24136705c /cpu-i386.h | |
parent | a98fd896cdcab506e734de7555304da16e775277 (diff) |
sparc support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@119 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-i386.h')
-rw-r--r-- | cpu-i386.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpu-i386.h b/cpu-i386.h index ca33791351..4b8aef12ad 100644 --- a/cpu-i386.h +++ b/cpu-i386.h @@ -180,6 +180,12 @@ typedef struct CPUX86State { /* emulator internal variables */ CPU86_LDouble ft0; + union { + float f; + double d; + int i32; + int64_t i64; + } fp_convert; /* segments */ uint32_t segs[6]; /* selector values */ |