aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/dbl-64
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-03-13 02:05:57 +0000
committerUlrich Drepper <drepper@redhat.com>2001-03-13 02:05:57 +0000
commita2d61ef8797fe23ee102bbb2b0910a6e10f711ce (patch)
treea57fc332e8c76690936159a49efd310183a4cbc9 /sysdeps/ieee754/dbl-64
parentca58f1dbeb62840dad345d6bfcca18c81db130a8 (diff)
downloadglibc-a2d61ef8797fe23ee102bbb2b0910a6e10f711ce.zip
glibc-a2d61ef8797fe23ee102bbb2b0910a6e10f711ce.tar.gz
glibc-a2d61ef8797fe23ee102bbb2b0910a6e10f711ce.tar.bz2
Update.
* sysdeps/ieee754/dbl-64/upow.h: Define nZERO and nINF.
Diffstat (limited to 'sysdeps/ieee754/dbl-64')
-rw-r--r--sysdeps/ieee754/dbl-64/upow.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/ieee754/dbl-64/upow.h b/sysdeps/ieee754/dbl-64/upow.h
index 33c1461..9b23351 100644
--- a/sysdeps/ieee754/dbl-64/upow.h
+++ b/sysdeps/ieee754/dbl-64/upow.h
@@ -31,7 +31,9 @@
#ifdef BIG_ENDI
const static mynumber
+/**/ nZERO = {{0x80000000, 0}}, /* -0.0 */
/**/ INF = {{0x7ff00000, 0x00000000}}, /* INF */
+/**/ nINF = {{0xfff00000, 0x00000000}}, /* -INF */
/**/ NaNQ = {{0x7ff80000, 0x00000000}}, /* NaNQ */
/**/ sqrt_2 = {{0x3ff6a09e, 0x667f3bcc}}, /* sqrt(2) */
/**/ ln2a = {{0x3fe62e42, 0xfefa3800}}, /* ln(2) 43 bits */
@@ -47,7 +49,9 @@
#else
#ifdef LITTLE_ENDI
const static mynumber
+/**/ nZERO = {{0, 0x80000000}}, /* -0.0 */
/**/ INF = {{0x00000000, 0x7ff00000}}, /* INF */
+/**/ nINF = {{0x00000000, 0xfff00000}}, /* -INF */
/**/ NaNQ = {{0x00000000, 0x7ff80000}}, /* NaNQ */
/**/ sqrt_2 = {{0x667f3bcc, 0x3ff6a09e}}, /* sqrt(2) */
/**/ ln2a = {{0xfefa3800, 0x3fe62e42}}, /* ln(2) 43 bits */