Skip to content

Commit fa2d334

Browse files
committed
fix some formatting
1 parent d23a3a0 commit fa2d334

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Zend/zend_compile.c

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ static void zend_do_free(znode *op1) /* {{{ */
757757
zend_op *opline = &CG(active_op_array)->opcodes[CG(active_op_array)->last-1];
758758

759759
while (opline->opcode == ZEND_END_SILENCE ||
760-
opline->opcode == ZEND_OP_DATA) {
760+
opline->opcode == ZEND_OP_DATA) {
761761
opline--;
762762
}
763763

@@ -821,7 +821,7 @@ static void zend_do_free(znode *op1) /* {{{ */
821821
} else {
822822
while (opline >= CG(active_op_array)->opcodes) {
823823
if ((opline->opcode == ZEND_FETCH_LIST_R ||
824-
opline->opcode == ZEND_FETCH_LIST_W) &&
824+
opline->opcode == ZEND_FETCH_LIST_W) &&
825825
opline->op1_type == IS_VAR &&
826826
opline->op1.var == op1->u.op.var) {
827827
zend_emit_op(NULL, ZEND_FREE, op1, NULL);
@@ -2590,7 +2590,7 @@ static void zend_short_circuiting_commit(uint32_t checkpoint, znode *result, zen
25902590
opline->extended_value |=
25912591
ast->kind == ZEND_AST_ISSET ? ZEND_SHORT_CIRCUITING_CHAIN_ISSET :
25922592
ast->kind == ZEND_AST_EMPTY ? ZEND_SHORT_CIRCUITING_CHAIN_EMPTY :
2593-
ZEND_SHORT_CIRCUITING_CHAIN_EXPR;
2593+
ZEND_SHORT_CIRCUITING_CHAIN_EXPR;
25942594
zend_stack_del_top(&CG(short_circuiting_opnums));
25952595
}
25962596
}
@@ -3973,9 +3973,9 @@ ZEND_API uint8_t zend_get_call_op(const zend_op *init_op, zend_function *fbc) /*
39733973
}
39743974
}
39753975
} else if (zend_execute_ex == execute_ex &&
3976-
!zend_execute_internal &&
3977-
(init_op->opcode == ZEND_INIT_FCALL_BY_NAME ||
3978-
init_op->opcode == ZEND_INIT_NS_FCALL_BY_NAME)) {
3976+
!zend_execute_internal &&
3977+
(init_op->opcode == ZEND_INIT_FCALL_BY_NAME ||
3978+
init_op->opcode == ZEND_INIT_NS_FCALL_BY_NAME)) {
39793979
return ZEND_DO_FCALL_BY_NAME;
39803980
}
39813981
return ZEND_DO_FCALL;
@@ -4196,8 +4196,8 @@ static zend_result zend_compile_func_chr(znode *result, zend_ast_list *args) /*
41964196
{
41974197

41984198
if (args->children == 1 &&
4199-
args->child[0]->kind == ZEND_AST_ZVAL &&
4200-
Z_TYPE_P(zend_ast_get_zval(args->child[0])) == IS_LONG) {
4199+
args->child[0]->kind == ZEND_AST_ZVAL &&
4200+
Z_TYPE_P(zend_ast_get_zval(args->child[0])) == IS_LONG) {
42014201

42024202
zend_long c = Z_LVAL_P(zend_ast_get_zval(args->child[0])) & 0xff;
42034203

@@ -4213,8 +4213,8 @@ static zend_result zend_compile_func_chr(znode *result, zend_ast_list *args) /*
42134213
static zend_result zend_compile_func_ord(znode *result, zend_ast_list *args) /* {{{ */
42144214
{
42154215
if (args->children == 1 &&
4216-
args->child[0]->kind == ZEND_AST_ZVAL &&
4217-
Z_TYPE_P(zend_ast_get_zval(args->child[0])) == IS_STRING) {
4216+
args->child[0]->kind == ZEND_AST_ZVAL &&
4217+
Z_TYPE_P(zend_ast_get_zval(args->child[0])) == IS_STRING) {
42184218

42194219
result->op_type = IS_CONST;
42204220
ZVAL_LONG(&result->u.constant, (unsigned char)Z_STRVAL_P(zend_ast_get_zval(args->child[0]))[0]);

0 commit comments

Comments
 (0)