Fix the value of TWO

This commit is contained in:
Siddhesh Poyarekar 2013-01-16 14:52:48 +05:30
parent 1aa6176780
commit dd930cc571
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-01-16 Siddhesh Poyarekar <siddhesh@redhat.com>
* sysdeps/ieee754/dbl-64/mpa2.h: Fix the value of TWO.
2013-01-15 David S. Miller <davem@davemloft.net>
* sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3

View File

@ -36,7 +36,7 @@
#define ZERO 0.0 /* 0 */
#define ONE 1.0 /* 1 */
#define MONE -1.0 /* -1 */
#define TWO -2.0 /* -2 */
#define TWO 2.0 /* 2 */
#define TWO5 0x1.0p5 /* 2^5 */
#define TWO10 0x1.0p10 /* 2^10 */
#define TWO18 0x1.0p18 /* 2^18 */