From: Rasmus Lerdorf Date: Fri, 5 Jun 2009 22:24:53 +0000 (+0000) Subject: We don't have these in gcc2 X-Git-Tag: php-5.2.10RC2~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=077ff24ef95f294dbe6c1960ea4f8482a71db90a;p=php We don't have these in gcc2 --- diff --git a/Zend/zend.h b/Zend/zend.h index b169f265fd..2479fbeb21 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -280,7 +280,7 @@ static const char long_min_digits[] = "9223372036854775808"; #define INTERNAL_FUNCTION_PARAMETERS int ht, zval *return_value, zval **return_value_ptr, zval *this_ptr, int return_value_used TSRMLS_DC #define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, return_value_ptr, this_ptr, return_value_used TSRMLS_CC -#if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(DARWIN) && !defined(__hpux) && !defined(_AIX) && !defined(__osf__) +#if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(DARWIN) && !defined(__hpux) && !defined(_AIX) && !defined(__osf__) && __GNUC__ >= 3 # define ZEND_VM_ALWAYS_INLINE __attribute__ ((always_inline)) void zend_error_noreturn(int type, const char *format, ...) __attribute__ ((noreturn)); #else