diff options
author | Andreas Jaeger <aj@suse.de> | 2001-04-02 11:26:16 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-04-02 11:26:16 +0000 |
commit | f457369d0137a855fbba76a25e7befac84d9843f (patch) | |
tree | 55dcfe6bc5e6f8f0833901e549746b06f1cb846e /sysdeps/ieee754/dbl-64/uroot.h | |
parent | 9bd77523563ddda0dab4d80d4898f02f33361c4e (diff) | |
download | glibc-f457369d0137a855fbba76a25e7befac84d9843f.tar.gz glibc-f457369d0137a855fbba76a25e7befac84d9843f.tar.xz glibc-f457369d0137a855fbba76a25e7befac84d9843f.zip |
Update.
* sysdeps/ieee754/dbl-64/uroot.h: Add missing braces arount initializers. * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Likewise. * elf/rtld.c (print_statistics)[!HP_TIMING_NONAVAIL]: Avoid warning about unused variable.
Diffstat (limited to 'sysdeps/ieee754/dbl-64/uroot.h')
-rw-r--r-- | sysdeps/ieee754/dbl-64/uroot.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/ieee754/dbl-64/uroot.h b/sysdeps/ieee754/dbl-64/uroot.h index 8d22b9e242..1ef7054ec0 100644 --- a/sysdeps/ieee754/dbl-64/uroot.h +++ b/sysdeps/ieee754/dbl-64/uroot.h @@ -29,14 +29,14 @@ #ifdef BIG_ENDI static const mynumber -/**/ t512 = {0x5ff00000, 0x00000000 }, /* 2^512 */ -/**/ tm256 = {0x2ff00000, 0x00000000 }; /* 2^-256 */ +/**/ t512 = {{0x5ff00000, 0x00000000 }}, /* 2^512 */ +/**/ tm256 = {{0x2ff00000, 0x00000000 }}; /* 2^-256 */ #else #ifdef LITTLE_ENDI static const mynumber -/**/ t512 = {0x00000000, 0x5ff00000 }, /* 2^512 */ -/**/ tm256 = {0x00000000, 0x2ff00000 }; /* 2^-256 */ +/**/ t512 = {{0x00000000, 0x5ff00000 }}, /* 2^512 */ +/**/ tm256 = {{0x00000000, 0x2ff00000 }}; /* 2^-256 */ #endif #endif |