diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2013-02-19 14:01:40 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2013-02-19 14:01:40 +0000 |
commit | 406defcb58e60a2c7093700fbc27ae13a9b32d86 (patch) | |
tree | 06812d53daeb1952877d7d0700b54da3b42cee2d /libgfortran/intrinsics/c99_functions.c | |
parent | 242387fa90a6a0f3224e23fd3769e1f28b5ead7f (diff) | |
download | gcc-406defcb58e60a2c7093700fbc27ae13a9b32d86.zip gcc-406defcb58e60a2c7093700fbc27ae13a9b32d86.tar.gz gcc-406defcb58e60a2c7093700fbc27ae13a9b32d86.tar.bz2 |
re PR target/56347 (FAIL: gfortran.dg/integer_exponentiation_2.f90 -O2 execution test)
PR target/56347
* acinclude.m4 (LIBGFOR_CHECK_FOR_BROKEN_POWF): Remove check for
broken powf.
* configure.ac (LIBGFOR_CHECK_FOR_BROKEN_POWF): Likewise.
* intrinsics/c99_functions.c: Likewise.
* configure: Rebuilt.
* config.h.in: Rebuilt.
From-SVN: r196139
Diffstat (limited to 'libgfortran/intrinsics/c99_functions.c')
-rw-r--r-- | libgfortran/intrinsics/c99_functions.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libgfortran/intrinsics/c99_functions.c b/libgfortran/intrinsics/c99_functions.c index f6acf2d..ee74b11 100644 --- a/libgfortran/intrinsics/c99_functions.c +++ b/libgfortran/intrinsics/c99_functions.c @@ -518,10 +518,8 @@ nextafterf (float x, float y) #endif -#if !defined(HAVE_POWF) || defined(HAVE_BROKEN_POWF) #ifndef HAVE_POWF #define HAVE_POWF 1 -#endif float powf (float x, float y); float |