From: Andreas Jaeger Date: Mon, 22 May 2000 09:25:32 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc_2-1-91~402 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=85153f6c4c85653fec836e017d865f80d2885ae9;p=thirdparty%2Fglibc.git Update. 2000-05-21 Jakub Jelinek * sysdeps/arm/bits/huge_val.h: Prereq gcc 2.96+, not 2.95. * sysdeps/i386/bits/huge_val.h: Likewise. * sysdeps/ieee754/bits/huge_val.h: Likewise. * sysdeps/m68k/bits/huge_val.h: Likewise. * sysdeps/sparc/sparc32/bits/huge_val.h: Likewise. * sysdeps/sparc/sparc64/bits/huge_val.h: Likewise. --- diff --git a/ChangeLog b/ChangeLog index 758d918a71d..a896a0f162f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2000-05-21 Jakub Jelinek + + * sysdeps/arm/bits/huge_val.h: Prereq gcc 2.96+, not 2.95. + * sysdeps/i386/bits/huge_val.h: Likewise. + * sysdeps/ieee754/bits/huge_val.h: Likewise. + * sysdeps/m68k/bits/huge_val.h: Likewise. + * sysdeps/sparc/sparc32/bits/huge_val.h: Likewise. + * sysdeps/sparc/sparc64/bits/huge_val.h: Likewise. + 2000-05-22 Andreas Jaeger * iconv/tst-iconv1.c (main): Remove const from inbuf to follow diff --git a/sysdeps/arm/bits/huge_val.h b/sysdeps/arm/bits/huge_val.h index 44db4bdd589..841b4b0d688 100644 --- a/sysdeps/arm/bits/huge_val.h +++ b/sysdeps/arm/bits/huge_val.h @@ -29,7 +29,7 @@ #ifdef __GNUC__ -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VAL (__extension__ 0x1.0p2047) @@ -67,7 +67,7 @@ static __huge_val_t __huge_val = { __HUGE_VAL_bytes }; # ifdef __GNUC__ -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VALF (__extension__ 0x1.0p255f) diff --git a/sysdeps/i386/bits/huge_val.h b/sysdeps/i386/bits/huge_val.h index 518c8cc62c2..f45e1f5d37a 100644 --- a/sysdeps/i386/bits/huge_val.h +++ b/sysdeps/i386/bits/huge_val.h @@ -26,7 +26,7 @@ /* IEEE positive infinity (-HUGE_VAL is negative infinity). */ -#if __GNUC_PREREQ(2,95) +#if __GNUC_PREREQ(2,96) # define HUGE_VAL (__extension__ 0x1.0p2047) #else # define __HUGE_VAL_bytes { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f } @@ -46,7 +46,7 @@ static __huge_val_t __huge_val = { __HUGE_VAL_bytes }; #ifdef __USE_ISOC99 -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VALF (__extension__ 0x1.0p255f) # define HUGE_VALL (__extension__ 0x1.0p32767L) diff --git a/sysdeps/ieee754/bits/huge_val.h b/sysdeps/ieee754/bits/huge_val.h index 9c25bb5f33a..f4c92fc7edb 100644 --- a/sysdeps/ieee754/bits/huge_val.h +++ b/sysdeps/ieee754/bits/huge_val.h @@ -28,7 +28,7 @@ #ifdef __GNUC__ -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VAL (__extension__ 0x1.0p2047) @@ -66,7 +66,7 @@ static __huge_val_t __huge_val = { __HUGE_VAL_bytes }; # ifdef __GNUC__ -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VALF (__extension__ 0x1.0p255f) diff --git a/sysdeps/m68k/bits/huge_val.h b/sysdeps/m68k/bits/huge_val.h index d191042835a..9e1589157cc 100644 --- a/sysdeps/m68k/bits/huge_val.h +++ b/sysdeps/m68k/bits/huge_val.h @@ -30,7 +30,7 @@ #ifdef __GNUC__ -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VAL (__extension__ 0x1.0p2047) @@ -56,7 +56,7 @@ static union { unsigned char __c[8]; double __d; } __huge_val = #ifdef __USE_ISOC99 -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VALF (__extension__ 0x1.0p255f) # define HUGE_VALL (__extension__ 0x1.0p32767L) diff --git a/sysdeps/sparc/sparc32/fpu/bits/huge_val.h b/sysdeps/sparc/sparc32/fpu/bits/huge_val.h index ca0767b91a3..320e057da51 100644 --- a/sysdeps/sparc/sparc32/fpu/bits/huge_val.h +++ b/sysdeps/sparc/sparc32/fpu/bits/huge_val.h @@ -29,7 +29,7 @@ #ifdef __GNUC__ -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VAL (__extension__ 0x1.0p2047) @@ -58,7 +58,7 @@ static __huge_val_t __huge_val = { __HUGE_VAL_bytes }; #ifdef __USE_ISOC99 -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VALF (__extension__ 0x1.0p255f) # if __WORDSIZE == 32 diff --git a/sysdeps/sparc/sparc64/fpu/bits/huge_val.h b/sysdeps/sparc/sparc64/fpu/bits/huge_val.h index ca0767b91a3..320e057da51 100644 --- a/sysdeps/sparc/sparc64/fpu/bits/huge_val.h +++ b/sysdeps/sparc/sparc64/fpu/bits/huge_val.h @@ -29,7 +29,7 @@ #ifdef __GNUC__ -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VAL (__extension__ 0x1.0p2047) @@ -58,7 +58,7 @@ static __huge_val_t __huge_val = { __HUGE_VAL_bytes }; #ifdef __USE_ISOC99 -# if __GNUC_PREREQ(2,95) +# if __GNUC_PREREQ(2,96) # define HUGE_VALF (__extension__ 0x1.0p255f) # if __WORDSIZE == 32