* lib/log2l.c (log2l): On clang, use the expression 0.0L/0.0L.
+2020-08-16 Bruno Haible <bruno@clisp.org>
+
+ log2l: Disable MSVC workaround on clang.
+ * lib/log2l.c (log2l): On clang, use the expression 0.0L/0.0L.
+
2020-08-16 Bruno Haible <bruno@clisp.org>
argp: Emit a warning also with clang.
else
{
/* Return NaN. */
-#if defined _MSC_VER || (defined __sgi && !defined __GNUC__)
+#if (defined _MSC_VER && !defined __clang__) || (defined __sgi && !defined __GNUC__)
static long double zero;
return zero / zero;
#else