]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libgfortran/intrinsics/erfc_scaled_inc.c
Update copyright years.
[thirdparty/gcc.git] / libgfortran / intrinsics / erfc_scaled_inc.c
index c003c667e60a783b3f3bacdd547bf7e58bcb2315..3d6653f36644d59b63a5d0899b40fad6348f3fb0 100644 (file)
@@ -1,5 +1,5 @@
 /* Implementation of the ERFC_SCALED intrinsic, to be included by erfc_scaled.c
-   Copyright (c) 2008 Free Software Foundation, Inc.
+   Copyright (C) 2008-2020 Free Software Foundation, Inc.
 
 This file is part of the GNU Fortran runtime library (libgfortran).
 
@@ -39,7 +39,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 # define EXP(x) exp(x)
 # define TRUNC(x) trunc(x)
 
-#elif (KIND == 10) || (KIND == 16 && defined(GFC_REAL_16_IS_LONG_DOUBLE))
+#elif (KIND == 10)
 
 # ifdef HAVE_EXPL
 #  define EXP(x) expl(x)
@@ -48,11 +48,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #  define TRUNC(x) truncl(x)
 # endif
 
-#elif (KIND == 16 && defined(GFC_REAL_16_IS_FLOAT128))
-
-#  define EXP(x) expq(x)
-#  define TRUNC(x) truncq(x)
-
 #else
 
 # error "What exactly is it that you want me to do?"