Skip to content

Commit 9388348

Browse files
committed
cleanup
1 parent 13d62b9 commit 9388348

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ext/opcache/jit/zend_jit_vm_helpers.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,6 @@ zend_jit_trace_stop ZEND_FASTCALL zend_jit_trace_execute(zend_execute_data *ex,
915915
}
916916
if (EX(call)->func->type == ZEND_INTERNAL_FUNCTION) {
917917
zend_function *func = EX(call)->func;
918-
uint32_t info = 0;
919918

920919
if (func->op_array.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) {
921920
/* continue recording */
@@ -924,7 +923,7 @@ zend_jit_trace_stop ZEND_FASTCALL zend_jit_trace_execute(zend_execute_data *ex,
924923
stop = ZEND_JIT_TRACE_STOP_BAD_FUNC;
925924
break;
926925
}
927-
TRACE_RECORD(ZEND_JIT_TRACE_DO_ICALL, info, func);
926+
TRACE_RECORD(ZEND_JIT_TRACE_DO_ICALL, 0, func);
928927
}
929928
} else if (opline->opcode == ZEND_INCLUDE_OR_EVAL
930929
|| opline->opcode == ZEND_CALLABLE_CONVERT) {

0 commit comments

Comments
 (0)