From 817a391b3496c5f257a28bd392be649e355c7b06 Mon Sep 17 00:00:00 2001 From: Roland Westrelin <47032191+rwestrel@users.noreply.github.com> Date: Thu, 12 Jun 2025 17:12:27 +0200 Subject: [PATCH] Update src/hotspot/share/opto/loopnode.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Roberto CastaƱeda Lozano --- src/hotspot/share/opto/loopnode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotspot/share/opto/loopnode.cpp b/src/hotspot/share/opto/loopnode.cpp index a0a0b1e440d..a90267c4eb5 100644 --- a/src/hotspot/share/opto/loopnode.cpp +++ b/src/hotspot/share/opto/loopnode.cpp @@ -3023,7 +3023,7 @@ void OuterStripMinedLoopNode::handle_sunk_stores_at_expansion(PhaseIterGVN* igvn // Found a chain of Stores that were sunk // Do we already have a memory Phi for that slice on the outer loop? If that is the case, that Phi was created // by cloning an inner loop Phi. The inner loop Phi should have mem, the memory state of the first Store out of - // the inner loop as input on the backedge. So does the outer loop Phi given it's a clone. + // the inner loop, as input on the backedge. So does the outer loop Phi given it's a clone. Node* phi = nullptr; for (DUIterator_Fast imax, i = mem->fast_outs(imax); i < imax; i++) { Node* u = mem->fast_out(i);