+2023-05-24 Bruno Haible <bruno@clisp.org>
+
+ diffseq: Silence gcc warning.
+ * lib/diffseq.h: Add #pragma GCC diagnostic.
+
2023-05-24 Paul Eggert <eggert@cs.ucla.edu>
manywarnings: speed up nomfi test
/* Use this to suppress gcc's "...may be used before initialized" warnings.
Beware: The Code argument must not contain commas. */
+#if __GNUC__ + (__GNUC_MINOR__ >= 7) > 4
+# pragma GCC diagnostic push
+#endif
#ifndef IF_LINT
# if defined GCC_LINT || defined lint
# define IF_LINT(Code) Code
# else
# define IF_LINT(Code) /* empty */
+# if __GNUC__ + (__GNUC_MINOR__ >= 7) > 4
+# pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
+# endif
# endif
#endif
#undef XREF_YREF_EQUAL
}
+#if __GNUC__ + (__GNUC_MINOR__ >= 7) > 4
+# pragma GCC diagnostic pop
+#endif
+
/* Compare in detail contiguous subsequences of the two vectors
which are known, as a whole, to match each other.