Skip to content

Commit

Permalink
Remove assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
dstogov committed Nov 11, 2020
1 parent d776c31 commit 03e7854
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ext/opcache/jit/zend_jit_trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,8 @@ static int zend_jit_trace_restrict_ssa_var_info(const zend_op_array *op_array, c
} else if (instanceof_function(info->ce, tssa->var_info[ssa_var].ce)) {
// TODO: TSSA may miss Pi() functions and corresponding instanceof() constraints ???
} else {
ZEND_UNREACHABLE();
// TODO: classes may implement the same interface ???
//ZEND_UNREACHABLE();
}
}
tssa->var_info[ssa_var].is_instanceof =
Expand Down

0 comments on commit 03e7854

Please sign in to comment.