*** empty log message ***

From-SVN: r8045
This commit is contained in:
Steve Chamberlain 1994-09-08 22:41:05 +00:00
parent bca949e251
commit 13ce26b042
1 changed files with 2 additions and 2 deletions

View 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;