Skip to content

Commit 9549cd2

Browse files
author
Patric Hedlin
committedJan 13, 2020
8235870: C2 crashes in IdealLoopTree::est_loop_flow_merge_sz()
Reviewed-by: thartmann
1 parent ea152dc commit 9549cd2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/hotspot/share/opto/loopnode.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -2505,13 +2505,14 @@ uint IdealLoopTree::est_loop_flow_merge_sz() const {
25052505

25062506
for (uint k = 0; k < outcnt; k++) {
25072507
Node* out = node->raw_out(k);
2508-
2508+
if (out == NULL) continue;
25092509
if (out->is_CFG()) {
25102510
if (!is_member(_phase->get_loop(out))) {
25112511
ctrl_edge_out_cnt++;
25122512
}
2513-
} else {
2513+
} else if (_phase->has_ctrl(out)) {
25142514
Node* ctrl = _phase->get_ctrl(out);
2515+
assert(ctrl != NULL, "must be");
25152516
assert(ctrl->is_CFG(), "must be");
25162517
if (!is_member(_phase->get_loop(ctrl))) {
25172518
data_edge_out_cnt++;

0 commit comments

Comments
 (0)
Please sign in to comment.