<http://www.gnu.org/licenses/>. */
-/* What are the C types corresponding to the real(kind=10) and
- real(kind=16) types? We currently rely on the following assumptions:
- -- if real(kind=10) exists, i.e. if HAVE_GFC_REAL_10 is defined,
- then it is necessarily the "long double" type
- -- if real(kind=16) exists, then:
- * if HAVE_GFC_REAL_10, real(kind=16) is "__float128"
- * otherwise, real(kind=16) is "long double"
- To allow to change this in the future, we create the
- GFC_REAL_16_IS_FLOAT128 macro that is used throughout libgfortran. */
-
-#if defined(HAVE_GFC_REAL_16)
-# if defined(HAVE_GFC_REAL_10)
-# define GFC_REAL_16_IS_FLOAT128
-# if !defined(HAVE_FLOAT128)
-# error "Where has __float128 gone?"
-# endif
-# else
-# define GFC_REAL_16_IS_LONG_DOUBLE
-# endif
+/* Ensure that TFmode is available under. */
+
+#if defined(GFC_REAL_16_IS_FLOAT128) && !defined(HAVE_FLOAT128)
+# error "Where has __float128 gone?"
#endif
case $k in
4) ctype="float" ; cplxtype="complex float" ; suffix="f" ;;
8) ctype="double" ; cplxtype="complex double" ; suffix="" ;;
+ # If we have a REAL(KIND=10), it is always long double
10) ctype="long double" ; cplxtype="complex long double" ; suffix="l" ;;
- 16) if [ $long_double_kind -eq 10 ]; then
+ # If we have a REAL(KIND=16), it is either long double or __float128
+ 16) if [ $long_double_kind -ne 16 ]; then
ctype="__float128"
cplxtype="_Complex float __attribute__((mode(TC)))"
suffix="q"
+ echo "#define GFC_REAL_16_IS_FLOAT128"
else
ctype="long double"
cplxtype="complex long double"
suffix="l"
+ echo "#define GFC_REAL_16_IS_LONG_DOUBLE"
fi ;;
*) echo "$0: Unknown type" >&2 ; exit 1 ;;
esac