summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorLukas Mai <l.mai@web.de>2014-11-29 00:07:38 +0100
committerFather Chrysostomos <sprout@cpan.org>2014-11-28 20:33:42 -0800
commitd1020b40a3b8ad7c19ae98e0474874c4761f5cac (patch)
tree5506870e9041dc3e542e76595f40933a219839bb /perl.h
parent1b355718011da496d8f9131832eff0b4baedb729 (diff)
downloadperl-d1020b40a3b8ad7c19ae98e0474874c4761f5cac.tar.gz
fix off-by-one error in version check
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.h b/perl.h
index 4344b76b04..f36157c360 100644
--- a/perl.h
+++ b/perl.h
@@ -3514,7 +3514,7 @@ typedef pthread_key_t perl_key;
#ifndef DEBUGGING
# if __has_builtin(__builtin_unreachable) \
- || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5 || __GNUC__ > 5) /* 4.5 -> */
+ || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5 || __GNUC__ > 4) /* 4.5 -> */
# define ASSUME(x) ((x) ? (void) 0 : __builtin_unreachable())
# elif defined(_MSC_VER)
# define ASSUME(x) __assume(x)