summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2019-04-11 03:06:51 +0300
committerDmitry Stogov <dmitry@zend.com>2019-04-11 03:06:51 +0300
commit77c522062af20a19d02ec9c612721329fce38588 (patch)
treedff9195f9735125718d8c8cddb2ce98a14711e28
parentcc900edd775dc87e74b5412e7cea324a60a01e74 (diff)
downloadphp-git-77c522062af20a19d02ec9c612721329fce38588.tar.gz
Removed old constants (they are redeclared as macros)
-rw-r--r--Zend/zend_compile.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index fefe566c58..a882d4f675 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -477,13 +477,6 @@ union _zend_function {
zend_internal_function internal_function;
};
-typedef enum _zend_call_kind {
- ZEND_CALL_NESTED_FUNCTION, /* stackless VM call to function */
- ZEND_CALL_NESTED_CODE, /* stackless VM call to include/require/eval */
- ZEND_CALL_TOP_FUNCTION, /* direct VM call to function from external C code */
- ZEND_CALL_TOP_CODE /* direct VM call to "main" code from external C code */
-} zend_call_kind;
-
struct _zend_execute_data {
const zend_op *opline; /* executed opline */
zend_execute_data *call; /* current call */