diff options
author | Steve Chamberlain <sac@gnu.org> | 1994-09-08 22:41:05 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@gnu.org> | 1994-09-08 22:41:05 +0000 |
commit | 13ce26b042ae661fde957ed094fdecae4757e865 (patch) | |
tree | dd799453700ee600e76fbd17e6775dc6e866539e /gcc/config/fp-bit.c | |
parent | bca949e2511608b06398451ddb7c9bbea0cdc8b3 (diff) | |
download | gcc-13ce26b042ae661fde957ed094fdecae4757e865.tar.gz |
*** empty log message ***
From-SVN: r8045
Diffstat (limited to 'gcc/config/fp-bit.c')
-rw-r--r-- | gcc/config/fp-bit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c index 8819029aa09..64d46eb81bc 100644 --- a/gcc/config/fp-bit.c +++ b/gcc/config/fp-bit.c @@ -716,9 +716,9 @@ _fpmul_parts ( fp_number_type * a, #else /* Doing a 64*64 to 128 */ { - UDItype nl = a->fraction.ll; + UDItype nl = a->fraction.ll & 0xffffffff; UDItype nh = a->fraction.ll >> 32; - UDItype ml = b->fraction.ll; + UDItype ml = b->fraction.ll & 0xffffffff; UDItype mh = b->fraction.ll >>32; UDItype pp_ll = ml * nl; UDItype pp_hl = mh * nl; |