Fortran: fix preprocessor condition

libgfortran/ChangeLog:

	* ieee/issignaling_fallback.h: fix preprocessor condition.
This commit is contained in:
Francois-Xavier Coudert 2022-01-25 11:35:56 +01:00
parent d0336ab4e7
commit 0d56eb93aa
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ __issignalingl (long double x)
return ret || (((exi & 0x7fff) == 0x7fff) && (hxi > 0xc0000000));
}
#elif (__LDBL_DIG__ = 33) && __LDBL_IS_IEC_60559__
#elif (__LDBL_DIG__ == 33) && __LDBL_IS_IEC_60559__
/* Long double is 128-bit type. */