about summary refs log tree commit diff
path: root/sysdeps/ieee754/dbl-64/mpa.h
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2013-03-29 16:40:36 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2013-03-29 16:40:36 +0530
commitc2d94018c6963b63e95e4666feac976a97816972 (patch)
treec677fbc0ed1634d0b008ceec3b05a5889c834506 /sysdeps/ieee754/dbl-64/mpa.h
parent27ec37f185488a91521ddfbc42d74d8e783a29c9 (diff)
downloadglibc-c2d94018c6963b63e95e4666feac976a97816972.tar.gz
glibc-c2d94018c6963b63e95e4666feac976a97816972.tar.xz
glibc-c2d94018c6963b63e95e4666feac976a97816972.zip
Remove ONE and MONE
Diffstat (limited to 'sysdeps/ieee754/dbl-64/mpa.h')
-rw-r--r--sysdeps/ieee754/dbl-64/mpa.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sysdeps/ieee754/dbl-64/mpa.h b/sysdeps/ieee754/dbl-64/mpa.h
index 27bc7dcb5d..ee81f5cbef 100644
--- a/sysdeps/ieee754/dbl-64/mpa.h
+++ b/sysdeps/ieee754/dbl-64/mpa.h
@@ -91,8 +91,6 @@ extern const mp_no mptwo;
 # define  TWO52     0x1.0p52		/* 2^52    */
 #endif
 
-#define  ONE       1.0			/* 1       */
-#define  MONE      -1.0			/* -1      */
 #define  TWO       2.0			/*  2      */
 
 #define  TWO5      TWOPOW (5)		/* 2^5     */
@@ -150,7 +148,7 @@ __pow_mp (int pow, mp_no *y, int p)
       rem += 24;
     }
   /* The sign of any 2^x is always positive.  */
-  Y[0] = ONE;
+  Y[0] = 1;
   Y[1] = 1 << rem;
 
   /* Everything else is 0.  */