projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95fef01
)
Replace EXTRACT_LDOUBLE_WORDS by GET_LDOUBLE_WORDS.
author
drepper
<drepper>
Tue, 11 Nov 1997 23:41:23 +0000
(23:41 +0000)
committer
drepper
<drepper>
Tue, 11 Nov 1997 23:41:23 +0000
(23:41 +0000)
sysdeps/libm-ieee754/e_atan2l.c
patch
|
blob
|
history
diff --git
a/sysdeps/libm-ieee754/e_atan2l.c
b/sysdeps/libm-ieee754/e_atan2l.c
index
72d3eac
..
aff7a3d
100644
(file)
--- a/
sysdeps/libm-ieee754/e_atan2l.c
+++ b/
sysdeps/libm-ieee754/e_atan2l.c
@@
-71,10
+71,10
@@
pi_lo = -5.01655761266833202345176e-20L;/* 0xBFBE, 0xECE675D1, 0xFC8F8CBB */
int32_t k,m,hx,hy,ix,iy;
u_int32_t sx,sy,lx,ly;
-
EXTRAC
T_LDOUBLE_WORDS(sx,hx,lx,x);
+
GE
T_LDOUBLE_WORDS(sx,hx,lx,x);
ix = sx&0x7fff;
lx |= hx & 0x7fffffff;
-
EXTRAC
T_LDOUBLE_WORDS(sy,hy,ly,y);
+
GE
T_LDOUBLE_WORDS(sy,hy,ly,y);
iy = sy&0x7fff;
ly |= hy & 0x7fffffff;
if(((2*ix|((lx|-lx)>>31))>0xfffe)||