Work around GCC bug 123042

* src/ccl.c: The bug occurs in GCC versions after GCC 13.
This commit is contained in:
Paul Eggert 2025-12-07 15:21:46 -08:00
parent 2b7261d7f5
commit f766e8a36b

View file

@ -600,11 +600,11 @@ do \
} \
while (0)
/* Work around GCC bug 109579
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109579
/* Work around GCC bug 123042
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123042
which causes GCC to mistakenly complain about
popping the mapping stack. */
#if __GNUC__ == 13
#if 13 <= __GNUC__
# pragma GCC diagnostic ignored "-Wanalyzer-out-of-bounds"
#endif