@@ -1247,7 +1247,7 @@ static void zend_mark_function_as_generator() /* {{{ */
12471247
12481248 if (ZEND_TYPE_CODE (return_info .type ) != IS_ITERABLE ) {
12491249 const char * msg = "Generators may only declare a return type of Generator, Iterator, Traversable, or iterable, %s is not permitted" ;
1250-
1250+
12511251 if (!ZEND_TYPE_IS_CLASS (return_info .type )) {
12521252 zend_error_noreturn (E_COMPILE_ERROR , msg , zend_get_type_by_const (ZEND_TYPE_CODE (return_info .type )));
12531253 }
@@ -2161,7 +2161,7 @@ static void zend_emit_tick(void) /* {{{ */
21612161 if (CG (active_op_array )-> last && CG (active_op_array )-> opcodes [CG (active_op_array )-> last - 1 ].opcode == ZEND_TICKS ) {
21622162 return ;
21632163 }
2164-
2164+
21652165 opline = get_next_op (CG (active_op_array ));
21662166
21672167 opline -> opcode = ZEND_TICKS ;
@@ -2592,7 +2592,7 @@ static zend_op *zend_compile_simple_var_no_cv(znode *result, zend_ast *ast, uint
25922592 opline = zend_emit_op (result , ZEND_FETCH_R , & name_node , NULL );
25932593 }
25942594
2595- if (name_node .op_type == IS_CONST &&
2595+ if (name_node .op_type == IS_CONST &&
25962596 zend_is_auto_global (Z_STR (name_node .u .constant ))) {
25972597
25982598 opline -> extended_value = ZEND_FETCH_GLOBAL ;
@@ -5036,7 +5036,7 @@ void zend_compile_switch(zend_ast *ast) /* {{{ */
50365036 if (jumptable ) {
50375037 zval * cond_zv = zend_ast_get_zval (cond_ast );
50385038 zval jmp_target ;
5039- ZVAL_LONG (& jmp_target , get_next_op_number (CG (active_op_array )));
5039+ ZVAL_LONG (& jmp_target , get_next_op_number (CG (active_op_array )));
50405040
50415041 ZEND_ASSERT (Z_TYPE_P (cond_zv ) == jumptable_type );
50425042 if (Z_TYPE_P (cond_zv ) == IS_LONG ) {
@@ -5212,7 +5212,7 @@ void zend_compile_try(zend_ast *ast) /* {{{ */
52125212 if (finally_ast ) {
52135213 zend_loop_var discard_exception ;
52145214 uint32_t opnum_jmp = get_next_op_number (CG (active_op_array )) + 1 ;
5215-
5215+
52165216 /* Pop FAST_CALL from unwind stack */
52175217 zend_stack_del_top (& CG (loop_var_stack ));
52185218
@@ -5466,7 +5466,7 @@ void zend_compile_params(zend_ast *ast, zend_ast *return_type_ast) /* {{{ */
54665466 uint32_t i ;
54675467 zend_op_array * op_array = CG (active_op_array );
54685468 zend_arg_info * arg_infos ;
5469-
5469+
54705470 if (return_type_ast ) {
54715471 zend_bool allow_null = 0 ;
54725472
@@ -5610,7 +5610,7 @@ void zend_compile_params(zend_ast *ast, zend_ast *return_type_ast) /* {{{ */
56105610 "with a float type can only be float, integer, or NULL" );
56115611 }
56125612 break ;
5613-
5613+
56145614 case IS_ITERABLE :
56155615 if (Z_TYPE (default_node .u .constant ) != IS_ARRAY ) {
56165616 zend_error_noreturn (E_COMPILE_ERROR , "Default value for parameters "
@@ -5622,7 +5622,7 @@ void zend_compile_params(zend_ast *ast, zend_ast *return_type_ast) /* {{{ */
56225622 zend_error_noreturn (E_COMPILE_ERROR , "Default value for parameters "
56235623 "with an object type can only be NULL" );
56245624 break ;
5625-
5625+
56265626 default :
56275627 if (!ZEND_SAME_FAKE_TYPE (ZEND_TYPE_CODE (arg_info -> type ), Z_TYPE (default_node .u .constant ))) {
56285628 zend_error_noreturn (E_COMPILE_ERROR , "Default value for parameters "
@@ -5651,7 +5651,7 @@ void zend_compile_params(zend_ast *ast, zend_ast *return_type_ast) /* {{{ */
56515651 if (opline -> opcode != ZEND_RECV_INIT ) {
56525652 opline -> op2 .num = -1 ;
56535653 }
5654- }
5654+ }
56555655 }
56565656
56575657 /* These are assigned at the end to avoid uninitialized memory in case of an error */
@@ -7929,7 +7929,7 @@ static void zend_compile_encaps_list(znode *result, zend_ast *ast) /* {{{ */
79297929 i = ((j * sizeof (zend_string * )) + (sizeof (zval ) - 1 )) / sizeof (zval );
79307930 while (i > 1 ) {
79317931 get_temporary_variable (CG (active_op_array ));
7932- i -- ;
7932+ i -- ;
79337933 }
79347934
79357935 zend_end_live_range (CG (active_op_array ), range , opline - CG (active_op_array )-> opcodes ,
0 commit comments