Skip to content

Commit fbd3a24

Browse files
committed
Spaces
1 parent ec023e4 commit fbd3a24

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Zend/zend_execute.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5308,6 +5308,7 @@ static zend_always_inline zend_execute_data *_zend_vm_stack_push_call_frame(uint
53085308
#endif
53095309

53105310
#ifdef ZEND_VERIFY_TYPE_INFERENCE
5311+
53115312
static bool zend_verify_type_inference(uint32_t type_mask, zval *value)
53125313
{
53135314
if (type_mask == 0) {
@@ -5420,6 +5421,7 @@ static void zend_verify_result_type_inference(zend_execute_data *execute_data, c
54205421
fflush(stderr);
54215422
}
54225423
}
5424+
54235425
static void zend_verify_op1_type_inference(zend_execute_data *execute_data, const zend_op *opline, uint32_t type)
54245426
{
54255427
if (!type) {
@@ -5443,6 +5445,7 @@ static void zend_verify_op1_type_inference(zend_execute_data *execute_data, cons
54435445
fflush(stderr);
54445446
}
54455447
}
5448+
54465449
static void zend_verify_op2_type_inference(zend_execute_data *execute_data, const zend_op *opline, uint32_t type)
54475450
{
54485451
if (!type) {
@@ -5462,18 +5465,21 @@ static void zend_verify_op2_type_inference(zend_execute_data *execute_data, cons
54625465
fflush(stderr);
54635466
}
54645467
}
5468+
54655469
static void zend_verify_inference_use(zend_execute_data *execute_data, const zend_op *opline)
54665470
{
54675471
zend_verify_op1_type_inference(execute_data, opline, opline->op1_use_type);
54685472
zend_verify_op2_type_inference(execute_data, opline, opline->op2_use_type);
54695473
zend_verify_result_type_inference(execute_data, opline, opline->result_use_type);
54705474
}
5475+
54715476
static void zend_verify_inference_def(zend_execute_data *execute_data, const zend_op *opline)
54725477
{
54735478
zend_verify_op1_type_inference(execute_data, opline, opline->op1_def_type);
54745479
zend_verify_op2_type_inference(execute_data, opline, opline->op2_def_type);
54755480
zend_verify_result_type_inference(execute_data, opline, opline->result_def_type);
54765481
}
5482+
54775483
# define ZEND_VERIFY_INFERENCE_USE() zend_verify_inference_use(execute_data, OPLINE);
54785484
# define ZEND_VERIFY_INFERENCE_DEF() zend_verify_inference_def(execute_data, OPLINE);
54795485
#else

0 commit comments

Comments
 (0)