From 13ce26b042ae661fde957ed094fdecae4757e865 Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Thu, 8 Sep 1994 22:41:05 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r8045 --- gcc/config/fp-bit.c | 4 ++-- 1 file 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; -- 2.30.2