summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2016-05-04 10:54:29 +0100
committerJoe Watkins <krakjoe@php.net>2016-05-04 10:54:29 +0100
commitdc78e02ad240094e286174fab84881a32f58d070 (patch)
tree16da212bc82632ca0e433e39a78f9b253bb4b20d /Zend/zend_compile.h
parentc38310f25a418fad80a8a81f8b376553f57be164 (diff)
parent9bbee305e3bb1d85ddad6bad92409818953207d5 (diff)
downloadphp-git-dc78e02ad240094e286174fab84881a32f58d070.tar.gz
Merge branch 'PHP-7.0'
* PHP-7.0: add compiler option to disable builtins (special case function calls)
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index f716dc51ff..f52d22a384 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -1019,6 +1019,9 @@ END_EXTERN_C()
/* force IS_OBJ_USE_GUARDS for all classes */
#define ZEND_COMPILE_GUARDS (1<<9)
+/* disable builtin special case function calls */
+#define ZEND_COMPILE_NO_BUILTINS (1<<10)
+
/* The default value for CG(compiler_options) */
#define ZEND_COMPILE_DEFAULT ZEND_COMPILE_HANDLE_OP_ARRAY