diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 4d287d8cc51..e669278f6e3 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -130,10 +130,10 @@ extern int sys_select (int, fd_set *, fd_set *, fd_set *, | |||
| 130 | struct timespec *, void *); | 130 | struct timespec *, void *); |
| 131 | #endif | 131 | #endif |
| 132 | 132 | ||
| 133 | /* Work around GCC 4.7.0 bug with strict overflow checking; see | 133 | /* Work around GCC 4.3.0 bug with strict overflow checking; see |
| 134 | <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52904>. | 134 | <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52904>. |
| 135 | This bug appears to be fixed in GCC 5.1, so don't work around it there. */ | 135 | This bug appears to be fixed in GCC 5.1, so don't work around it there. */ |
| 136 | #if __GNUC__ == 4 && __GNUC_MINOR__ >= 3 | 136 | #if GNUC_PREREQ (4, 3, 0) && ! GNUC_PREREQ (5, 1, 0) |
| 137 | # pragma GCC diagnostic ignored "-Wstrict-overflow" | 137 | # pragma GCC diagnostic ignored "-Wstrict-overflow" |
| 138 | #endif | 138 | #endif |
| 139 | 139 | ||