Skip to content

Commit baea290

Browse files
committed
fix windows build
1 parent f3192ea commit baea290

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Zend/zend_vm_def.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5319,10 +5319,10 @@ ZEND_VM_HANDLER(156, ZEND_SEPARATE, VAR, UNUSED)
53195319

53205320
ZEND_VM_HANDLER(159, ZEND_LEAVE, ANY, ANY) {
53215321
{
5322-
USE_OPLINE;
5323-
SAVE_OPLINE();
5322+
USE_OPLINE
53245323
zend_uint i, op_num = opline - EG(active_op_array)->opcodes;
53255324

5325+
SAVE_OPLINE();
53265326
zend_exception_restore(TSRMLS_C);
53275327
if (EX(leaving)) {
53285328
zend_uint catch_op_num = 0, finally_op_num = 0;

Zend/zend_vm_execute.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,10 +1177,10 @@ static int ZEND_FASTCALL ZEND_USER_OPCODE_SPEC_HANDLER(ZEND_OPCODE_HANDLER_ARGS
11771177

11781178
static int ZEND_FASTCALL ZEND_LEAVE_SPEC_HANDLER(ZEND_OPCODE_HANDLER_ARGS)
11791179
{
1180-
USE_OPLINE;
1181-
SAVE_OPLINE();
1180+
USE_OPLINE
11821181
zend_uint i, op_num = opline - EG(active_op_array)->opcodes;
11831182

1183+
SAVE_OPLINE();
11841184
zend_exception_restore(TSRMLS_C);
11851185
if (EX(leaving)) {
11861186
zend_uint catch_op_num = 0, finally_op_num = 0;

0 commit comments

Comments
 (0)