1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-07 17:19:18 +02:00

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.
This commit is contained in:
Paul Eggert
2024-02-17 21:40:20 -08:00
parent aed1aa29db
commit 0fee70a9ff
+1 -1
View File
@@ -910,7 +910,7 @@ fmt_paragraph (void)
}
/* Work around <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109628>. */
#if 13 <= __GNUC__
#if __GNUC__ == 13
# pragma GCC diagnostic ignored "-Wanalyzer-use-of-uninitialized-value"
#endif