]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fortran: fix preprocessor condition
authorFrancois-Xavier Coudert <fxcoudert@gmail.com>
Tue, 25 Jan 2022 10:35:56 +0000 (11:35 +0100)
committerFrancois-Xavier Coudert <fxcoudert@gmail.com>
Tue, 25 Jan 2022 10:35:56 +0000 (11:35 +0100)
libgfortran/ChangeLog:

* ieee/issignaling_fallback.h: fix preprocessor condition.

libgfortran/ieee/issignaling_fallback.h

index e824cf8c59bde4b2cf58ac3834a3cf5e82f751c1..4632bc510f735826d12cedf89d55fe851adc3bbf 100644 (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.  */