mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix a typo in function execute_ex (#7315)
This commit is contained in:
parent
6d8d6364df
commit
60ea2cbf74
2 changed files with 2 additions and 2 deletions
|
@ -50754,7 +50754,7 @@ ZEND_API void execute_ex(zend_execute_data *ex)
|
|||
{
|
||||
DCL_OPLINE
|
||||
|
||||
#if defined(ZEND_VM_IP_GLOBAL_REG) || defined(ZEND_VM_IP_GLOBAL_REG)
|
||||
#if defined(ZEND_VM_IP_GLOBAL_REG) || defined(ZEND_VM_FP_GLOBAL_REG)
|
||||
struct {
|
||||
#ifdef ZEND_VM_IP_GLOBAL_REG
|
||||
const zend_op *orig_opline;
|
||||
|
|
|
@ -2067,7 +2067,7 @@ function gen_executor($f, $skl, $spec, $kind, $executor_name, $initializer_name)
|
|||
out($f,$m[1]."zend_execute_data *execute_data = ex;\n");
|
||||
out($f,"#endif\n");
|
||||
} else {
|
||||
out($f,"#if defined(ZEND_VM_IP_GLOBAL_REG) || defined(ZEND_VM_IP_GLOBAL_REG)\n");
|
||||
out($f,"#if defined(ZEND_VM_IP_GLOBAL_REG) || defined(ZEND_VM_FP_GLOBAL_REG)\n");
|
||||
out($f,$m[1]."struct {\n");
|
||||
out($f,"#ifdef ZEND_VM_IP_GLOBAL_REG\n");
|
||||
out($f,$m[1]."\tconst zend_op *orig_opline;\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue