Skip to content

Commit

Permalink
8288302: Shenandoah: SIGSEGV in vm maybe related to jit compiling xerces
Browse files Browse the repository at this point in the history
Reviewed-by: shade, thartmann
  • Loading branch information
rwestrel committed Oct 4, 2022
1 parent f957ce9 commit bf39b18
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -1080,7 +1080,8 @@ Node* ShenandoahBarrierSetC2::ideal_node(PhaseGVN* phase, Node* n, bool can_resh
} else if (can_reshape &&
n->Opcode() == Op_If &&
ShenandoahBarrierC2Support::is_heap_stable_test(n) &&
n->in(0) != NULL) {
n->in(0) != NULL &&
n->outcnt() == 2) {
Node* dom = n->in(0);
Node* prev_dom = n;
int op = n->Opcode();
Expand Down

0 comments on commit bf39b18

Please sign in to comment.