* lib/intprops.h (_GL_HAS_BUILTIN_OVERFLOW):
Mention Clang in comment, responding to a query from
Mattias EngdegÄrd.
+2019-08-24 Paul Eggert <eggert@cs.ucla.edu>
+
+ intprops: say why not Clang __builtin_add_overflow
+ * lib/intprops.h (_GL_HAS_BUILTIN_OVERFLOW):
+ Mention Clang in comment, responding to a query from
+ Mattias EngdegÄrd.
+
2019-08-24 Bruno Haible <bruno@clisp.org>
doc: Document most of the files outside of modules.
? (a) < (min) >> (b) \
: (max) >> (b) < (a))
-/* True if __builtin_add_overflow (A, B, P) works when P is non-null. */
+/* True if __builtin_add_overflow (A, B, P) works when P is non-null.
+ See <https://bugs.llvm.org/show_bug.cgi?id=16404> for why this is
+ false for Clang. */
#if 5 <= __GNUC__ && !defined __ICC
# define _GL_HAS_BUILTIN_OVERFLOW 1
#else