diff options
| author | Paul Eggert | 2025-12-07 15:21:46 -0800 |
|---|---|---|
| committer | Paul Eggert | 2025-12-07 15:45:20 -0800 |
| commit | f766e8a36b47c55946e577af3dd70f43ebf05a93 (patch) | |
| tree | 8cf92ec97a49f7997de777beb1f614eef60a66d9 /src | |
| parent | 2b7261d7f50410ab12b95c71674405f09a5e80fe (diff) | |
| download | emacs-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -600,11 +600,11 @@ do \ | |||
| 600 | } \ | 600 | } \ |
| 601 | while (0) | 601 | while (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 | ||