From: Steven G. Kargl Date: Tue, 31 Jan 2017 18:50:31 +0000 (+0000) Subject: re PR fortran/79305 (real128 - undefined reference to cexpl) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0751254a759314c114e51b47536d2c8feb0fbcea;p=gcc.git re PR fortran/79305 (real128 - undefined reference to cexpl) 2017-01-31 Steven G. Kargl PR fortran/79305 * c99_protos.h: Spell HAVE_EXPL correctly. * intrinsics/c99_functions.c: Ditto. From-SVN: r245068 --- diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index ad4f65b7fb2..a3a8c2249ee 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2017-01-31 Steven G. Kargl + + PR fortran/79305 + * c99_protos.h: Spell HAVE_EXPL correctly. + * intrinsics/c99_functions.c: Ditto. + 2017-01-19 Uros Bizjak PR target/78478 diff --git a/libgfortran/c99_protos.h b/libgfortran/c99_protos.h index 932b08d5c45..7680c6f34b7 100644 --- a/libgfortran/c99_protos.h +++ b/libgfortran/c99_protos.h @@ -332,7 +332,7 @@ extern float complex cexpf (float complex); extern double complex cexp (double complex); #endif -#if !defined(HAVE_CEXPL) && defined(HAVE_COSL) && defined(HAVE_SINL) && defined(EXPL) +#if !defined(HAVE_CEXPL) && defined(HAVE_COSL) && defined(HAVE_SINL) && defined(HAVE_EXPL) #define HAVE_CEXPL 1 extern long double complex cexpl (long double complex); #endif diff --git a/libgfortran/intrinsics/c99_functions.c b/libgfortran/intrinsics/c99_functions.c index b1491524e84..dce0d7a042c 100644 --- a/libgfortran/intrinsics/c99_functions.c +++ b/libgfortran/intrinsics/c99_functions.c @@ -913,7 +913,7 @@ cexp (double complex z) } #endif -#if !defined(HAVE_CEXPL) && defined(HAVE_COSL) && defined(HAVE_SINL) && defined(EXPL) +#if !defined(HAVE_CEXPL) && defined(HAVE_COSL) && defined(HAVE_SINL) && defined(HAVE_EXPL) #define HAVE_CEXPL 1 long double complex cexpl (long double complex z);