about summary refs log tree commit diff
path: root/sysdeps/ieee754/dbl-64/mpatan2.c
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2013-03-29 16:37:26 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2013-03-29 16:37:26 +0530
commita64d7e0efb34bde344bc1d4d17646a8ae6b6d588 (patch)
tree7b8fd9b40f7589d920cef1fabe6e80cf84af037f /sysdeps/ieee754/dbl-64/mpatan2.c
parentd26dd3eb006e813d5f81bd7a5f02d70d480de8c4 (diff)
downloadglibc-a64d7e0efb34bde344bc1d4d17646a8ae6b6d588.tar.gz
glibc-a64d7e0efb34bde344bc1d4d17646a8ae6b6d588.tar.xz
glibc-a64d7e0efb34bde344bc1d4d17646a8ae6b6d588.zip
Remove ZERO and MZERO macros
Diffstat (limited to 'sysdeps/ieee754/dbl-64/mpatan2.c')
-rw-r--r--sysdeps/ieee754/dbl-64/mpatan2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ieee754/dbl-64/mpatan2.c b/sysdeps/ieee754/dbl-64/mpatan2.c
index d29c2fbade..f4aa9dbd06 100644
--- a/sysdeps/ieee754/dbl-64/mpatan2.c
+++ b/sysdeps/ieee754/dbl-64/mpatan2.c
@@ -46,11 +46,11 @@ __mpatan2 (mp_no *y, mp_no *x, mp_no *z, int p)
 {
   mp_no mpt1, mpt2, mpt3;
 
-  if (X[0] <= ZERO)
+  if (X[0] <= 0)
     {
       __dvd (x, y, &mpt1, p);
       __mul (&mpt1, &mpt1, &mpt2, p);
-      if (mpt1.d[0] != ZERO)
+      if (mpt1.d[0] != 0)
 	mpt1.d[0] = ONE;
       __add (&mpt2, &mpone, &mpt3, p);
       __mpsqrt (&mpt3, &mpt2, p);