*** empty log message ***
authorSteve Chamberlain <sac@gnu.org>
Thu, 8 Sep 1994 22:41:05 +0000 (22:41 +0000)
committerSteve Chamberlain <sac@gnu.org>
Thu, 8 Sep 1994 22:41:05 +0000 (22:41 +0000)
From-SVN: r8045

gcc/config/fp-bit.c

index 8819029aa09ad8597e0efdc11bb5bf778a389134..64d46eb81bc136928aac6c85a3ca3ffb7b7d06e0 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;