@@ -199,7 +199,6 @@ ZEND_API void ZEND_FASTCALL convert_scalar_to_number(zval *op) /* {{{ */
199
199
}
200
200
/* }}} */
201
201
202
- /* {{{ _zendi_convert_scalar_to_number */
203
202
static zend_never_inline zval * ZEND_FASTCALL _zendi_convert_scalar_to_number_silent (zval * op , zval * holder ) /* {{{ */
204
203
{
205
204
switch (Z_TYPE_P (op )) {
@@ -270,7 +269,7 @@ static zend_never_inline int ZEND_FASTCALL _zendi_try_convert_scalar_to_number(z
270
269
}
271
270
/* }}} */
272
271
273
- static zend_always_inline int zendi_try_convert_scalar_to_number (zval * op , zval * holder )
272
+ static zend_always_inline int zendi_try_convert_scalar_to_number (zval * op , zval * holder ) /* {{{ */
274
273
{
275
274
if (Z_TYPE_P (op ) == IS_LONG || Z_TYPE_P (op ) == IS_DOUBLE ) {
276
275
ZVAL_COPY_VALUE (holder , op );
@@ -279,6 +278,7 @@ static zend_always_inline int zendi_try_convert_scalar_to_number(zval *op, zval
279
278
return _zendi_try_convert_scalar_to_number (op , holder );
280
279
}
281
280
}
281
+ /* }}} */
282
282
283
283
#define ZEND_TRY_BINARY_OP1_OBJECT_OPERATION (opcode ) \
284
284
if (UNEXPECTED(Z_TYPE_P(op1) == IS_OBJECT) \
@@ -626,7 +626,7 @@ ZEND_API void ZEND_FASTCALL _convert_to_string(zval *op) /* {{{ */
626
626
}
627
627
/* }}} */
628
628
629
- ZEND_API zend_bool ZEND_FASTCALL _try_convert_to_string (zval * op )
629
+ ZEND_API zend_bool ZEND_FASTCALL _try_convert_to_string (zval * op ) /* {{{ */
630
630
{
631
631
zend_string * str ;
632
632
@@ -639,6 +639,7 @@ ZEND_API zend_bool ZEND_FASTCALL _try_convert_to_string(zval *op)
639
639
ZVAL_STR (op , str );
640
640
return 1 ;
641
641
}
642
+ /* }}} */
642
643
643
644
static void convert_scalar_to_array (zval * op ) /* {{{ */
644
645
{
@@ -943,15 +944,15 @@ ZEND_API zend_string* ZEND_FASTCALL zval_try_get_string_func(zval *op) /* {{{ */
943
944
}
944
945
/* }}} */
945
946
946
- static ZEND_COLD zend_never_inline void ZEND_FASTCALL zend_binop_error (
947
- const char * operator , zval * op1 , zval * op2 ) {
947
+ static ZEND_COLD zend_never_inline void ZEND_FASTCALL zend_binop_error (const char * operator , zval * op1 , zval * op2 ) /* {{{ */ {
948
948
if (EG (exception )) {
949
949
return ;
950
950
}
951
951
952
952
zend_type_error ("Unsupported operand types: %s %s %s" ,
953
953
zend_get_type_by_const (Z_TYPE_P (op1 )), operator , zend_get_type_by_const (Z_TYPE_P (op2 )));
954
954
}
955
+ /* }}} */
955
956
956
957
static zend_never_inline void ZEND_FASTCALL add_function_array (zval * result , zval * op1 , zval * op2 ) /* {{{ */
957
958
{
@@ -1123,6 +1124,7 @@ static zend_always_inline int mul_function_fast(zval *result, zval *op1, zval *o
1123
1124
return FAILURE ;
1124
1125
}
1125
1126
}
1127
+ /* }}} */
1126
1128
1127
1129
static zend_never_inline int ZEND_FASTCALL mul_function_slow (zval * result , zval * op1 , zval * op2 ) /* {{{ */
1128
1130
{
@@ -1302,6 +1304,7 @@ static int ZEND_FASTCALL div_function_base(zval *result, zval *op1, zval *op2) /
1302
1304
return FAILURE ;
1303
1305
}
1304
1306
}
1307
+ /* }}} */
1305
1308
1306
1309
ZEND_API int ZEND_FASTCALL div_function (zval * result , zval * op1 , zval * op2 ) /* {{{ */
1307
1310
{
@@ -3083,7 +3086,7 @@ ZEND_API const char* ZEND_FASTCALL zend_memnrstr_ex(const char *haystack, const
3083
3086
3084
3087
#if !ZEND_DVAL_TO_LVAL_CAST_OK
3085
3088
# if SIZEOF_ZEND_LONG == 4
3086
- ZEND_API zend_long ZEND_FASTCALL zend_dval_to_lval_slow (double d )
3089
+ ZEND_API zend_long ZEND_FASTCALL zend_dval_to_lval_slow (double d ) /* {{{ */
3087
3090
{
3088
3091
double two_pow_32 = pow (2. , 32. ),
3089
3092
dmod ;
@@ -3110,5 +3113,6 @@ ZEND_API zend_long ZEND_FASTCALL zend_dval_to_lval_slow(double d)
3110
3113
}
3111
3114
return (zend_long )(zend_ulong )dmod ;
3112
3115
}
3116
+ /* }}} */
3113
3117
#endif
3114
3118
#endif
0 commit comments