mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
Fixed bug #30641 (Compile error: error: symbol "zend_error" is used but not defined)
This commit is contained in:
parent
5e4d91582a
commit
b2d28102a8
2
NEWS
2
NEWS
@ -123,6 +123,8 @@ PHP NEWS
|
||||
(Rob)
|
||||
- Fixed bug #30578 (Output buffers flushed before calling __desctruct()
|
||||
functions). (Jani)
|
||||
- Fixed bug #30641 (Compile error: error: symbol "zend_error" is used but not
|
||||
defined). (Dmitry)
|
||||
- Fixed bug #30407 (Strange behaviour of default arguments). (Dmitry)
|
||||
- Fixed bug #29728 (Reflection API Feature: Default parameter value). (Marcus)
|
||||
- Fixed bug #29522 (accessing properties without connection). (Georg)
|
||||
|
@ -42,7 +42,7 @@
|
||||
#define _UNUSED_CODE 3
|
||||
#define _CV_CODE 4
|
||||
|
||||
#if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(DARWIN) && !defined(ZEND_VM_OLD_EXECUTOR)
|
||||
#if defined(__GNUC__) && !defined(__INTEL_COMPILER) && !defined(DARWIN) && !defined(__sun__) && !defined(ZEND_VM_OLD_EXECUTOR)
|
||||
# define ZEND_VM_ALWAYS_INLINE __attribute__ ((always_inline))
|
||||
void zend_error_noreturn(int type, const char *format, ...) __attribute__ ((alias("zend_error"),noreturn));
|
||||
/*extern void zend_error_noreturn(int type, const char *format, ...) __asm__("zend_error") __attribute__ ((noreturn));*/
|
||||
|
Loading…
Reference in New Issue
Block a user