* lib/c-stack.c [USE_LIBSIGSEGV]: Disable --suggest-attribute=pure.
+2020-10-04 Paul Eggert <eggert@cs.ucla.edu>
+
+ c-stack: pacify GCC 9.3.1 when using libsigsegv
+ * lib/c-stack.c [USE_LIBSIGSEGV]: Disable --suggest-attribute=pure.
+
2020-10-04 Bruno Haible <bruno@clisp.org>
localename: Fix a couple of "unused parameter" warnings.
#if USE_LIBSIGSEGV
+/* Pacify GCC 9.3.1, which otherwise would complain about segv_handler. */
+# if __GNUC_PREREQ (4, 6)
+# pragma GCC diagnostic ignored "-Wsuggest-attribute=pure"
+# endif
+
/* Nonzero if general segv handler could not be installed. */
static volatile int segv_handler_missing;