aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2025-12-07 15:21:46 -0800
committerPaul Eggert2025-12-07 15:45:20 -0800
commitf766e8a36b47c55946e577af3dd70f43ebf05a93 (patch)
tree8cf92ec97a49f7997de777beb1f614eef60a66d9 /src
parent2b7261d7f50410ab12b95c71674405f09a5e80fe (diff)
downloademacs-f766e8a36b47c55946e577af3dd70f43ebf05a93.tar.gz
emacs-f766e8a36b47c55946e577af3dd70f43ebf05a93.zip
Work around GCC bug 123042
* src/ccl.c: The bug occurs in GCC versions after GCC 13.
Diffstat (limited to 'src')
-rw-r--r--src/ccl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ccl.c b/src/ccl.c
index 36094ca627e..3fb9f046c61 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -600,11 +600,11 @@ do \
600 } \ 600 } \
601while (0) 601while (0)
602 602
603/* Work around GCC bug 109579 603/* Work around GCC bug 123042
604 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109579 604 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123042
605 which causes GCC to mistakenly complain about 605 which causes GCC to mistakenly complain about
606 popping the mapping stack. */ 606 popping the mapping stack. */
607#if __GNUC__ == 13 607#if 13 <= __GNUC__
608# pragma GCC diagnostic ignored "-Wanalyzer-out-of-bounds" 608# pragma GCC diagnostic ignored "-Wanalyzer-out-of-bounds"
609#endif 609#endif
610 610