diff options
author | Andreas Jaeger <aj@suse.de> | 2000-05-17 17:19:18 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-05-17 17:19:18 +0000 |
commit | cc3f0ddb75ff6105a0fd869e6499c11e227bc787 (patch) | |
tree | c7d63383d75894c0f51bbe2783f3c657dcf0fc3c /sysdeps/sparc | |
parent | e656498ea979f746fa5e324c4cbd433a5a3de562 (diff) | |
download | glibc-cc3f0ddb75ff6105a0fd869e6499c11e227bc787.tar.gz glibc-cc3f0ddb75ff6105a0fd869e6499c11e227bc787.tar.xz glibc-cc3f0ddb75ff6105a0fd869e6499c11e227bc787.zip |
Update.
2000-05-17 Jakub Jelinek <jakub@redhat.com> * sysdeps/arm/bits/huge_val.h (HUGE_VAL, HUGE_VALF): Add __extension__ to hexadecimal floating constant notation. * sysdeps/i386/bits/huge_val.h (HUGE_VAL, HUGE_VALF, HUGE_VALL): Likewise. * sysdeps/ieee754/bits/huge_val.h (HUGE_VAL, HUGE_VALF): Likewise. * sysdeps/m68k/bits/huge_val.h (HUGE_VAL, HUGE_VALF, HUGE_VALL): Likewise. * sysdeps/sparc/sparc64/bits/huge_val.h (HUGE_VAL, HUGE_VALF, HUGE_VALL): Likewise. * sysdeps/sparc/sparc32/bits/huge_val.h (HUGE_VAL, HUGE_VALF, HUGE_VALL): Likewise. (HUGE_VALL): Set to HUGE_VAL on sparc32.
Diffstat (limited to 'sysdeps/sparc')
-rw-r--r-- | sysdeps/sparc/sparc32/fpu/bits/huge_val.h | 13 | ||||
-rw-r--r-- | sysdeps/sparc/sparc64/fpu/bits/huge_val.h | 8 |
2 files changed, 13 insertions, 8 deletions
diff --git a/sysdeps/sparc/sparc32/fpu/bits/huge_val.h b/sysdeps/sparc/sparc32/fpu/bits/huge_val.h index cdec73f62b..ca0767b91a 100644 --- a/sysdeps/sparc/sparc32/fpu/bits/huge_val.h +++ b/sysdeps/sparc/sparc32/fpu/bits/huge_val.h @@ -1,6 +1,6 @@ /* `HUGE_VAL' constants for IEEE 754 machines (where it is infinity). Used by <stdlib.h> and <math.h> functions for overflow. - Copyright (C) 1992, 1995, 1996, 1997, 1999 Free Software Foundation, Inc. + Copyright (C) 1992, 1995, 1996, 1997, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -31,7 +31,7 @@ # if __GNUC_PREREQ(2,95) -# define HUGE_VAL (0x1.0p2047) +# define HUGE_VAL (__extension__ 0x1.0p2047) # else @@ -60,8 +60,13 @@ static __huge_val_t __huge_val = { __HUGE_VAL_bytes }; # if __GNUC_PREREQ(2,95) -# define HUGE_VALF (0x1.0p255) -# define HUGE_VALL (0x1.0p32767) +# define HUGE_VALF (__extension__ 0x1.0p255f) +# if __WORDSIZE == 32 +# define HUGE_VALL HUGE_VAL +# else +/* Sparc64 uses IEEE 754 128bit long double */ +# define HUGE_VALL (__extension__ 0x1.0p32767L) +# endif # else diff --git a/sysdeps/sparc/sparc64/fpu/bits/huge_val.h b/sysdeps/sparc/sparc64/fpu/bits/huge_val.h index cd93257cbd..ca0767b91a 100644 --- a/sysdeps/sparc/sparc64/fpu/bits/huge_val.h +++ b/sysdeps/sparc/sparc64/fpu/bits/huge_val.h @@ -1,6 +1,6 @@ /* `HUGE_VAL' constants for IEEE 754 machines (where it is infinity). Used by <stdlib.h> and <math.h> functions for overflow. - Copyright (C) 1992, 1995, 1996, 1997, 1999 Free Software Foundation, Inc. + Copyright (C) 1992, 1995, 1996, 1997, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -31,7 +31,7 @@ # if __GNUC_PREREQ(2,95) -# define HUGE_VAL (0x1.0p2047) +# define HUGE_VAL (__extension__ 0x1.0p2047) # else @@ -60,12 +60,12 @@ static __huge_val_t __huge_val = { __HUGE_VAL_bytes }; # if __GNUC_PREREQ(2,95) -# define HUGE_VALF (0x1.0p255f) +# define HUGE_VALF (__extension__ 0x1.0p255f) # if __WORDSIZE == 32 # define HUGE_VALL HUGE_VAL # else /* Sparc64 uses IEEE 754 128bit long double */ -# define HUGE_VALL (0x1.0p32767L) +# define HUGE_VALL (__extension__ 0x1.0p32767L) # endif # else |