Skip to content

Commit 03e7854

Browse files
committed
Remove assertion
1 parent d776c31 commit 03e7854

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ext/opcache/jit/zend_jit_trace.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,8 @@ static int zend_jit_trace_restrict_ssa_var_info(const zend_op_array *op_array, c
829829
} else if (instanceof_function(info->ce, tssa->var_info[ssa_var].ce)) {
830830
// TODO: TSSA may miss Pi() functions and corresponding instanceof() constraints ???
831831
} else {
832-
ZEND_UNREACHABLE();
832+
// TODO: classes may implement the same interface ???
833+
//ZEND_UNREACHABLE();
833834
}
834835
}
835836
tssa->var_info[ssa_var].is_instanceof =

0 commit comments

Comments
 (0)