diff options
author | Dmitry Stogov <dmitry@zend.com> | 2013-11-28 11:44:14 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2013-11-28 11:44:14 +0400 |
commit | 57c1335fec064d8022d3d86b01ceb4eea0a027a7 (patch) | |
tree | a4fe6392f800910d696139538403a9b525a9136b /Zend/zend_compile.h | |
parent | fcb98cbce8b85326763f352cb789581b55d85ec8 (diff) | |
download | php-git-57c1335fec064d8022d3d86b01ceb4eea0a027a7.tar.gz |
Don't check argument types for internal functions without type hinting
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r-- | Zend/zend_compile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 23c5b22efd..5e284880e1 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -212,6 +212,9 @@ typedef struct _zend_try_catch_element { #define ZEND_ACC_RETURN_REFERENCE 0x4000000 #define ZEND_ACC_DONE_PASS_TWO 0x8000000 +/* function has arguments with type hinting */ +#define ZEND_ACC_HAS_TYPE_HINTS 0x10000000 + char *zend_visibility_string(zend_uint fn_flags); |