From 0fee70a9ff268332ce0ba60fe6ac12a37124335b Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 17 Feb 2024 21:40:20 -0800 Subject: [PATCH] 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. --- src/fmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.2