Skip to content

Commit

Permalink
Retain support for IU mode barrrier nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
earthling-amzn committed Oct 9, 2024
1 parent 8d9022b commit af5b675
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ bool ShenandoahBarrierSetC2::is_gc_pre_barrier_node(Node* node) const {
}

bool ShenandoahBarrierSetC2::is_gc_barrier_node(Node* node) const {
return (node->Opcode() == Op_ShenandoahLoadReferenceBarrier) ||
return (node->Opcode() == Op_ShenandoahLoadReferenceBarrier) || (node->Opcode() == Op_ShenandoahIUBarrier) ||
is_shenandoah_lrb_call(node) ||
is_shenandoah_wb_pre_call(node) ||
is_shenandoah_clone_call(node);
Expand Down

0 comments on commit af5b675

Please sign in to comment.