File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ zend_function **zend_frameless_function_1_functions = NULL;
38
38
zend_function * * zend_frameless_function_2_functions = NULL ;
39
39
zend_function * * zend_frameless_function_3_functions = NULL ;
40
40
41
- zend_function * * const * zend_frameless_function_0_functions_lists [] = {
41
+ zend_function * * const * zend_frameless_function_functions_lists [] = {
42
42
& zend_frameless_function_0_functions ,
43
43
& zend_frameless_function_1_functions ,
44
44
& zend_frameless_function_2_functions ,
Original file line number Diff line number Diff line change 28
28
#define ZEND_FRAMELESS_FUNCTION_NAME (name , arity ) zdc_##name##_##arity
29
29
#define ZEND_OP_IS_FRAMELESS_ICALL (opcode ) ((opcode) >= ZEND_FRAMELESS_ICALL_0 && (opcode) <= ZEND_FRAMELESS_ICALL_3)
30
30
#define ZEND_FLF_NUM_ARGS (opcode ) ((opcode) - ZEND_FRAMELESS_ICALL_0)
31
- #define ZEND_FLF_FUNC (opline ) ((*zend_frameless_function_0_functions_lists [ZEND_FLF_NUM_ARGS((opline)->opcode)])[(opline)->extended_value])
31
+ #define ZEND_FLF_FUNC (opline ) ((*zend_frameless_function_functions_lists [ZEND_FLF_NUM_ARGS((opline)->opcode)])[(opline)->extended_value])
32
32
33
33
#define ZEND_FRAMELESS_FUNCTION (name , arity ) \
34
34
void ZEND_FRAMELESS_FUNCTION_NAME(name, arity)(DIRECT_FUNCTION_PARAMETERS_##arity)
@@ -100,7 +100,7 @@ extern zend_function **zend_frameless_function_0_functions;
100
100
extern zend_function * * zend_frameless_function_1_functions ;
101
101
extern zend_function * * zend_frameless_function_2_functions ;
102
102
extern zend_function * * zend_frameless_function_3_functions ;
103
- extern zend_function * * const * zend_frameless_function_0_functions_lists [];
103
+ extern zend_function * * const * zend_frameless_function_functions_lists [];
104
104
105
105
typedef struct {
106
106
void * handler ;
You can’t perform that action at this time.
0 commit comments