mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:13:03 +00:00
[LIBM] Fix build
This commit is contained in:
parent
4afb647c78
commit
9e8ed3f817
35 changed files with 139 additions and 112 deletions
|
@ -58,7 +58,7 @@ double FN_PROTOTYPE(_exp2)(double x)
|
|||
|
||||
double y, z1, z2, z, hx, tx, y1, y2;
|
||||
int m;
|
||||
unsigned long ux, ax;
|
||||
unsigned long long ux, ax;
|
||||
|
||||
/*
|
||||
Computation of exp2(x).
|
||||
|
@ -121,7 +121,7 @@ double FN_PROTOTYPE(_exp2)(double x)
|
|||
else
|
||||
{
|
||||
/* Split x into hx (head) and tx (tail). */
|
||||
unsigned long u;
|
||||
unsigned long long u;
|
||||
hx = x;
|
||||
GET_BITS_DP64(hx, u);
|
||||
u &= 0xfffffffff8000000;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue