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
This commit is contained in:
parent
9d577a61fd
commit
6462eafacb
8 changed files with 18 additions and 7 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue