mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fixed GOTO executor
This commit is contained in:
parent
ea0b14fe22
commit
690843fa37
1 changed files with 6 additions and 0 deletions
|
@ -1531,6 +1531,12 @@ function gen_vm($def, $skel) {
|
|||
out($f, "#endif\n");
|
||||
out($f, "\treturn ret;\n");
|
||||
out($f, "}\n\n");
|
||||
} else {
|
||||
out($f, "ZEND_API int zend_vm_call_opcode_handler(zend_execute_data* ex)\n");
|
||||
out($f, "{\n");
|
||||
out($f, "\tzend_error_noreturn(E_CORE_ERROR, \"zend_vm_call_opcode_handler() is not supported\");\n");
|
||||
out($f, "\treturn 0;\n");
|
||||
out($f, "}\n\n");
|
||||
}
|
||||
|
||||
// Export handlers and helpers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue