Remove usage of ONE macro

I missed this instance, which caused a build failure in powerpc.
This commit is contained in:
Siddhesh Poyarekar 2013-03-29 16:53:05 +05:30
parent c2d94018c6
commit 0d1029de12
2 changed files with 4 additions and 1 deletions

View File

@ -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.

View File

@ -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; \
})