summaryrefslogtreecommitdiff
path: root/op-i386.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-06-02 20:38:09 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-06-02 20:38:09 +0000
commit2f87c60799042f6c9936040cedf6ea8dc690ca22 (patch)
tree966e04bd3506d60213e591a5ef94523248584c92 /op-i386.c
parent03bfca946a9fdf7a437f28183be36b4bf89b51e9 (diff)
downloadqemu-2f87c60799042f6c9936040cedf6ea8dc690ca22.tar.gz
Alpha update (Falk Hueffner)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@203 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'op-i386.c')
-rw-r--r--op-i386.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/op-i386.c b/op-i386.c
index befa39f4df..df841cec67 100644
--- a/op-i386.c
+++ b/op-i386.c
@@ -1762,16 +1762,16 @@ typedef union {
double d;
#ifndef WORDS_BIGENDIAN
struct {
- unsigned long lower;
- long upper;
+ uint32_t lower;
+ int32_t upper;
} l;
#else
struct {
- long upper;
- unsigned long lower;
+ int32_t upper;
+ uint32_t lower;
} l;
#endif
- long long ll;
+ int64_t ll;
} CPU86_LDoubleU;
/* the following deal with IEEE double-precision numbers */