diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-04-03 22:00:21 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2013-04-05 22:27:29 +0200 |
commit | 8b43a0c9f26d5cf067119e47df9973515535673f (patch) | |
tree | ac5f037ec69e76cf2ced6c53bc66adf6b21f5724 /sysdeps/ieee754/dbl-64/upow.h | |
parent | d91da4ce87cd571650f680c0d48d8d3441ec7d2f (diff) | |
download | glibc-8b43a0c9f26d5cf067119e47df9973515535673f.tar.gz glibc-8b43a0c9f26d5cf067119e47df9973515535673f.tar.xz glibc-8b43a0c9f26d5cf067119e47df9973515535673f.zip |
[BZ #15335, #15342] Fix standard compliance. Don't use hard-coded qNaN values.
Diffstat (limited to 'sysdeps/ieee754/dbl-64/upow.h')
-rw-r--r-- | sysdeps/ieee754/dbl-64/upow.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdeps/ieee754/dbl-64/upow.h b/sysdeps/ieee754/dbl-64/upow.h index 67bae1aefc..130fb3296f 100644 --- a/sysdeps/ieee754/dbl-64/upow.h +++ b/sysdeps/ieee754/dbl-64/upow.h @@ -34,7 +34,6 @@ /**/ 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 */ /**/ ln2b = {{0x3d2ef357, 0x93c76730}}, /* ln(2)-ln2a */ @@ -49,7 +48,6 @@ /**/ 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 */ /**/ ln2b = {{0x93c76730, 0x3d2ef357}}, /* ln(2)-ln2a */ |