mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-12 14:21:18 +08:00
Remove usage of ONE macro
I missed this instance, which caused a build failure in powerpc.
This commit is contained in:
parent
c2d94018c6
commit
0d1029de12
@ -1,5 +1,8 @@
|
||||
2013-03-29 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||
|
||||
* sysdeps/powerpc/power4/fpu/mpa-arch.h (INTEGER_OF): Replace
|
||||
ONE with its value.
|
||||
|
||||
* sysdeps/ieee754/dbl-64/mpa.h (ONE, MONE): Remove defines.
|
||||
(__pow_mp): Replace ONE and MONE with their values.
|
||||
* sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
|
||||
|
@ -40,7 +40,7 @@ typedef double mantissa_store_t;
|
||||
({ \
|
||||
double u = ((x) + TWO52) - TWO52; \
|
||||
if (u > (x)) \
|
||||
u -= ONE; \
|
||||
u -= 1; \
|
||||
(r) = u; \
|
||||
(x) -= u; \
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user