Commit 13ce26b0 by Steve Chamberlain

*** empty log message ***

From-SVN: r8045
parent bca949e2
...@@ -716,9 +716,9 @@ _fpmul_parts ( fp_number_type * a, ...@@ -716,9 +716,9 @@ _fpmul_parts ( fp_number_type * a,
#else #else
/* Doing a 64*64 to 128 */ /* Doing a 64*64 to 128 */
{ {
UDItype nl = a->fraction.ll; UDItype nl = a->fraction.ll & 0xffffffff;
UDItype nh = a->fraction.ll >> 32; UDItype nh = a->fraction.ll >> 32;
UDItype ml = b->fraction.ll; UDItype ml = b->fraction.ll & 0xffffffff;
UDItype mh = b->fraction.ll >>32; UDItype mh = b->fraction.ll >>32;
UDItype pp_ll = ml * nl; UDItype pp_ll = ml * nl;
UDItype pp_hl = mh * nl; UDItype pp_hl = mh * nl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment