Skip to content

Commit 173778e

Browse files
committedDec 13, 2022
8298568: Fastdebug build fails after JDK-8296389
Reviewed-by: rkennke, kvn, haosun
1 parent 829cbc2 commit 173778e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/gc/shenandoah/c2/shenandoahSupport.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2002,7 +2002,7 @@ Node* ShenandoahIUBarrierNode::Identity(PhaseGVN* phase) {
20022002
static bool has_never_branch(Node* root) {
20032003
for (uint i = 1; i < root->req(); i++) {
20042004
Node* in = root->in(i);
2005-
if (in != NULL && in->Opcode() == Op_Halt && in->in(0)->is_Proj() && in->in(0)->in(0)->isNeverBranch()) {
2005+
if (in != NULL && in->Opcode() == Op_Halt && in->in(0)->is_Proj() && in->in(0)->in(0)->is_NeverBranch()) {
20062006
return true;
20072007
}
20082008
}

0 commit comments

Comments
 (0)
Please sign in to comment.