mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
Work around GCC bug 123042
* src/ccl.c: The bug occurs in GCC versions after GCC 13.
This commit is contained in:
parent
2b7261d7f5
commit
f766e8a36b
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue