summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2016-05-04 10:53:59 +0100
committerJoe Watkins <krakjoe@php.net>2016-05-04 10:53:59 +0100
commit9bbee305e3bb1d85ddad6bad92409818953207d5 (patch)
tree6f88259970710b8f9b33d21781f56df1c5582924 /Zend/zend_compile.h
parent2d0081cebd131991eea11481c6af3c8965e8364f (diff)
downloadphp-git-9bbee305e3bb1d85ddad6bad92409818953207d5.tar.gz
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 9e30f55bdc..bbd2df7f2e 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -1011,6 +1011,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