summaryrefslogtreecommitdiff
path: root/sapi/phpdbg
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2017-05-03 10:01:22 +0300
committerDmitry Stogov <dmitry@zend.com>2017-05-03 10:01:22 +0300
commit27e01cd918dd3309571aa3628e6139d436b10e18 (patch)
treef3076c898353fc88eeda64e32cf63e374ebf924c /sapi/phpdbg
parent9d6b7435e4fc0f84096164e91c5aade1cfe1ac96 (diff)
downloadphp-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.c2
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