diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2010-01-15 18:26:53 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2010-01-15 18:26:53 +0000 |
commit | 15e31de034ad02c801ce0835fad12adfe636e70f (patch) | |
tree | 8623f7b699a163cc9d61d826382fe8190294f162 | |
parent | e3e76d7baff9520b36374d04f341259845b76535 (diff) | |
download | php-git-15e31de034ad02c801ce0835fad12adfe636e70f.tar.gz |
Fix gcc version check - bug #50771
-rw-r--r-- | Zend/zend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index 69bff1e12c..38f461c350 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -166,7 +166,7 @@ char *alloca (); # define ZEND_ATTRIBUTE_DEPRECATED #endif -#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3400 && defined(__i386__) +#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3004 && defined(__i386__) # define ZEND_FASTCALL __attribute__((fastcall)) #elif defined(_MSC_VER) && defined(_M_IX86) # define ZEND_FASTCALL __fastcall @@ -174,7 +174,7 @@ char *alloca (); # define ZEND_FASTCALL #endif -#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3400 +#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3004 #else # define __restrict__ #endif |