diff options
| author | Paul Eggert | 2024-08-21 23:36:45 -0700 |
|---|---|---|
| committer | Paul Eggert | 2024-08-21 23:37:04 -0700 |
| commit | 3d1d4f109ed4115256a08c74eeb704259d91c9f4 (patch) | |
| tree | af27e9e91e9c85f3363476d9e5020f67adf63e0c | |
| parent | 7c8e28607b78b371598df58de96c3c3362ad6002 (diff) | |
| download | emacs-3d1d4f109ed4115256a08c74eeb704259d91c9f4.tar.gz emacs-3d1d4f109ed4115256a08c74eeb704259d91c9f4.zip | |
GCC bug 58416 is fixed in GCC 15
* configure.ac (emacs_cv_gcc_bug_58416_CFLAGS):
No need for a workaround in GCC 15.
2024-08-19 Paul Eggert <eggert@cs.ucla.edu>
Remove obsolete comment about ‘volatile’
| -rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 67da852667d..d1a5b63b924 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -2365,7 +2365,7 @@ AC_CACHE_CHECK([for flags to work around GCC bug 58416], | |||
| 2365 | 20240607 (Red Hat 14.1.1-5) on x86-64. */ | 2365 | 20240607 (Red Hat 14.1.1-5) on x86-64. */ |
| 2366 | #include <float.h> | 2366 | #include <float.h> |
| 2367 | #if \ | 2367 | #if \ |
| 2368 | (4 <= __GNUC__ && !defined __clang__ \ | 2368 | (4 <= __GNUC__ && __GNUC__ <= 14 && !defined __clang__ \ |
| 2369 | && (defined __i386__ || defined __x86_64__) \ | 2369 | && (defined __i386__ || defined __x86_64__) \ |
| 2370 | && ! (0 <= FLT_EVAL_METHOD && FLT_EVAL_METHOD <= 1)) | 2370 | && ! (0 <= FLT_EVAL_METHOD && FLT_EVAL_METHOD <= 1)) |
| 2371 | # error "GCC bug 58416 is possibly present" | 2371 | # error "GCC bug 58416 is possibly present" |