diff options
Diffstat (limited to 'tests/infinity.h')
-rw-r--r-- | tests/infinity.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/tests/infinity.h b/tests/infinity.h index 9cf8d00..a948958 100644 --- a/tests/infinity.h +++ b/tests/infinity.h @@ -1,5 +1,5 @@ /* Macros for infinity. - Copyright (C) 2011-2016 Free Software Foundation, Inc. + Copyright (C) 2011-2017 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -12,14 +12,15 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. */ + along with this program. If not, see <https://www.gnu.org/licenses/>. */ /* Infinityf () returns a 'float' +Infinity. */ /* The Microsoft MSVC 9 compiler chokes on the expression 1.0f / 0.0f. - The IBM XL C compiler on z/OS complains. */ -#if defined _MSC_VER || (defined __MVS__ && defined __IBMC__) + The IBM XL C compiler on z/OS complains. + PGI 16.10 complains. */ +#if defined _MSC_VER || (defined __MVS__ && defined __IBMC__) || defined __PGI static float Infinityf () { @@ -34,8 +35,9 @@ Infinityf () /* Infinityd () returns a 'double' +Infinity. */ /* The Microsoft MSVC 9 compiler chokes on the expression 1.0 / 0.0. - The IBM XL C compiler on z/OS complains. */ -#if defined _MSC_VER || (defined __MVS__ && defined __IBMC__) + The IBM XL C compiler on z/OS complains. + PGI 16.10 complains. */ +#if defined _MSC_VER || (defined __MVS__ && defined __IBMC__) || defined __PGI static double Infinityd () { @@ -50,8 +52,9 @@ Infinityd () /* Infinityl () returns a 'long double' +Infinity. */ /* The Microsoft MSVC 9 compiler chokes on the expression 1.0L / 0.0L. - The IBM XL C compiler on z/OS complains. */ -#if defined _MSC_VER || (defined __MVS__ && defined __IBMC__) + The IBM XL C compiler on z/OS complains. + PGI 16.10 complains. */ +#if defined _MSC_VER || (defined __MVS__ && defined __IBMC__) || defined __PGI static long double Infinityl () { |