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:
f88a42c
)
(__ceill): Fix mask.
author
drepper
<drepper>
Mon, 16 Oct 2000 18:15:14 +0000
(18:15 +0000)
committer
drepper
<drepper>
Mon, 16 Oct 2000 18:15:14 +0000
(18:15 +0000)
sysdeps/ieee754/ldbl-128/s_ceill.c
patch
|
blob
|
history
diff --git
a/sysdeps/ieee754/ldbl-128/s_ceill.c
b/sysdeps/ieee754/ldbl-128/s_ceill.c
index
f241554
..
76bda9f
100644
(file)
--- a/
sysdeps/ieee754/ldbl-128/s_ceill.c
+++ b/
sysdeps/ieee754/ldbl-128/s_ceill.c
@@
-53,7
+53,7
@@
static long double huge = 1.0e4930;
else if((i0|i1)!=0) { i0=0x3fff000000000000ULL;i1=0;}
}
} else {
- i = (0x
7fff
ffffffffffffULL)>>j0;
+ i = (0x
0000
ffffffffffffULL)>>j0;
if(((i0&i)|i1)==0) return x; /* x is integral */
if(huge+x>0.0) { /* raise inexact flag */
if(i0>0) i0 += (0x0001000000000000LL)>>j0;