diff options
author | Hartmut Schirmer <SchirmerH@Innovative-Systems.de> | 2001-10-11 15:53:57 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-10-11 15:53:57 +0000 |
commit | 6462eafacbb1940b1074b105d24c7bad09923f4b (patch) | |
tree | 495c168a7c02fe0a1d9955cc73b3ea2581c2b55d /gcc | |
parent | 9d577a61fd7fe9addb498cba31242bc92398b93e (diff) | |
download | gcc-6462eafacbb1940b1074b105d24c7bad09923f4b.zip gcc-6462eafacbb1940b1074b105d24c7bad09923f4b.tar.gz gcc-6462eafacbb1940b1074b105d24c7bad09923f4b.tar.bz2 |
float-i128.h: Make sure __STDC__VERSION__ is defined before using it.
* config/float-i128.h: Make sure __STDC__VERSION__ is defined
before using it.
* config/float/i32.h: Likewise.
* config/float-i386.h: Likewise.
* config/float-i64.h: Likewise.
* config/float-m68k.h: Likewise.
* config/float-sh.h: Likewise.
* config/float-sparc.h: Likewise.
From-SVN: r46187
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/config/float-i128.h | 2 | ||||
-rw-r--r-- | gcc/config/float-i32.h | 2 | ||||
-rw-r--r-- | gcc/config/float-i386.h | 2 | ||||
-rw-r--r-- | gcc/config/float-i64.h | 2 | ||||
-rw-r--r-- | gcc/config/float-m68k.h | 2 | ||||
-rw-r--r-- | gcc/config/float-sh.h | 2 | ||||
-rw-r--r-- | gcc/config/float-sparc.h | 2 |
8 files changed, 18 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b9028c3..7086dc3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,14 @@ +2001-10-10 Hartmut Schirmer <SchirmerH@Innovative-Systems.de> + + * config/float-i128.h: Make sure __STDC__VERSION__ is defined + before using it. + * config/float/i32.h: Likewise. + * config/float-i386.h: Likewise. + * config/float-i64.h: Likewise. + * config/float-m68k.h: Likewise. + * config/float-sh.h: Likewise. + * config/float-sparc.h: Likewise. + 2001-10-11 Hans-Peter Nilsson <hp@axis.com> * doc/contrib.texi: Add note about CRIS port to my entry. diff --git a/gcc/config/float-i128.h b/gcc/config/float-i128.h index f7ce3b3..c61c82f 100644 --- a/gcc/config/float-i128.h +++ b/gcc/config/float-i128.h @@ -93,7 +93,7 @@ #undef LDBL_MAX_10_EXP #define LDBL_MAX_10_EXP 4932 -#if __STDC_VERSION__ >= 199901L +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* The floating-point expression evaluation method. -1 indeterminate 0 evaluate all operations and constants just to the range and diff --git a/gcc/config/float-i32.h b/gcc/config/float-i32.h index 27e3394..3e633d8 100644 --- a/gcc/config/float-i32.h +++ b/gcc/config/float-i32.h @@ -93,7 +93,7 @@ #undef LDBL_MAX_10_EXP #define LDBL_MAX_10_EXP 38 -#if __STDC_VERSION__ >= 199901L +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* The floating-point expression evaluation method. -1 indeterminate 0 evaluate all operations and constants just to the range and diff --git a/gcc/config/float-i386.h b/gcc/config/float-i386.h index 075f2ee..6abb4f2 100644 --- a/gcc/config/float-i386.h +++ b/gcc/config/float-i386.h @@ -94,7 +94,7 @@ #undef LDBL_MAX_10_EXP #define LDBL_MAX_10_EXP 4932 -#if __STDC_VERSION__ >= 199901L +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* The floating-point expression evaluation method. -1 indeterminate 0 evaluate all operations and constants just to the range and diff --git a/gcc/config/float-i64.h b/gcc/config/float-i64.h index b045fb3..735f742 100644 --- a/gcc/config/float-i64.h +++ b/gcc/config/float-i64.h @@ -93,7 +93,7 @@ #undef LDBL_MAX_10_EXP #define LDBL_MAX_10_EXP 308 -#if __STDC_VERSION__ >= 199901L +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* The floating-point expression evaluation method. -1 indeterminate 0 evaluate all operations and constants just to the range and diff --git a/gcc/config/float-m68k.h b/gcc/config/float-m68k.h index c942b1d..837126b 100644 --- a/gcc/config/float-m68k.h +++ b/gcc/config/float-m68k.h @@ -94,7 +94,7 @@ #undef LDBL_MAX_10_EXP #define LDBL_MAX_10_EXP 4932 -#if __STDC_VERSION__ >= 199901L +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* The floating-point expression evaluation method. -1 indeterminate 0 evaluate all operations and constants just to the range and diff --git a/gcc/config/float-sh.h b/gcc/config/float-sh.h index 0ff8d3b..598994b 100644 --- a/gcc/config/float-sh.h +++ b/gcc/config/float-sh.h @@ -130,7 +130,7 @@ #undef LDBL_MAX_10_EXP #define LDBL_MAX_10_EXP 308 -#if __STDC_VERSION__ >= 199901L +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* The floating-point expression evaluation method. -1 indeterminate 0 evaluate all operations and constants just to the range and diff --git a/gcc/config/float-sparc.h b/gcc/config/float-sparc.h index 307528e..f3c2583 100644 --- a/gcc/config/float-sparc.h +++ b/gcc/config/float-sparc.h @@ -119,7 +119,7 @@ #endif /* sparc32 */ -#if __STDC_VERSION__ >= 199901L +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* The floating-point expression evaluation method. -1 indeterminate 0 evaluate all operations and constants just to the range and |