diff options
author | Dmitry Stogov <dmitry@zend.com> | 2017-05-03 10:01:22 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2017-05-03 10:01:22 +0300 |
commit | 27e01cd918dd3309571aa3628e6139d436b10e18 (patch) | |
tree | f3076c898353fc88eeda64e32cf63e374ebf924c /sapi/phpdbg | |
parent | 9d6b7435e4fc0f84096164e91c5aade1cfe1ac96 (diff) | |
download | php-git-27e01cd918dd3309571aa3628e6139d436b10e18.tar.gz |
Implemented HYBRID VM instruction dispatch method that takes advantages of both CALL and GOTO VMs.
Diffstat (limited to 'sapi/phpdbg')
-rw-r--r-- | sapi/phpdbg/phpdbg_prompt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_prompt.c b/sapi/phpdbg/phpdbg_prompt.c index 544c973eec..88b0dad0b0 100644 --- a/sapi/phpdbg/phpdbg_prompt.c +++ b/sapi/phpdbg/phpdbg_prompt.c @@ -46,7 +46,7 @@ #include "phpdbg_wait.h" #include "phpdbg_eol.h" -#if ZEND_VM_KIND != ZEND_VM_KIND_CALL +#if ZEND_VM_KIND != ZEND_VM_KIND_CALL && ZEND_VM_KIND != ZEND_VM_KIND_HYBRID #error "phpdbg can only be built with CALL zend vm kind" #endif |