From: Paul Eggert Date: Sun, 18 Feb 2024 05:40:20 +0000 (-0800) Subject: maint: document fix for GCC bug 109628 X-Git-Tag: v9.5~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0fee70a9ff268332ce0ba60fe6ac12a37124335b;p=thirdparty%2Fcoreutils.git maint: document fix for GCC bug 109628 * src/fmt.c [14 <= __GNUC__]: Stop using pragma workaround, as the GCC folks say the bug is no longer present in GCC 14. --- diff --git a/src/fmt.c b/src/fmt.c index 86e6d0b2f5..73ef64ee40 100644 --- a/src/fmt.c +++ b/src/fmt.c @@ -910,7 +910,7 @@ fmt_paragraph (void) } /* Work around . */ -#if 13 <= __GNUC__ +#if __GNUC__ == 13 # pragma GCC diagnostic ignored "-Wanalyzer-use-of-uninitialized-value" #endif