OSDN Git Service

*** empty log message ***
authorsac <sac@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Sep 1994 22:41:05 +0000 (22:41 +0000)
committersac <sac@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Sep 1994 22:41:05 +0000 (22:41 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8045 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/config/fp-bit.c

index 8819029..64d46eb 100644 (file)
@@ -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;