Work around GCC bug 109579 in ccl.c
* src/ccl.c (POP_MAPPING_STACK): Ignore -Wanalyzer-out-of-bounds.
This commit is contained in:
parent
7166737b5c
commit
0b9677a192
1 changed files with 8 additions and 0 deletions
|
@ -605,6 +605,14 @@ do \
|
|||
} \
|
||||
while (0)
|
||||
|
||||
/* Work around GCC bug 109579
|
||||
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109579
|
||||
which causes GCC to mistakenly complain about
|
||||
popping the mapping stack. */
|
||||
#if GNUC_PREREQ (13, 0, 0)
|
||||
# pragma GCC diagnostic ignored "-Wanalyzer-out-of-bounds"
|
||||
#endif
|
||||
|
||||
#define POP_MAPPING_STACK(restlen, orig) \
|
||||
do \
|
||||
{ \
|
||||
|
|
Loading…
Add table
Reference in a new issue