Skip to content

Commit

Permalink
Merge pull request #20849 from hzongaro/mark-loop-end-as-end-of-inter…
Browse files Browse the repository at this point in the history
…nal-control-flow

Mark loop end label as end-of-internal-control-flow label
  • Loading branch information
vijaysun-omr authored Dec 18, 2024
2 parents dc6337c + 92a3fc3 commit 92742f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/compiler/x/codegen/J9TreeEvaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9656,7 +9656,7 @@ J9::X86::TreeEvaluator::vectorizedHashCodeHelper(TR::Node *node, TR::DataType dt
TR::LabelSymbol *residueLoopLabel = generateLabelSymbol(cg);

residueBeginLoopLabel->setStartInternalControlFlow();
residueBeginLoopLabel->setEndInternalControlFlow();
residueEndLoopLabel->setEndInternalControlFlow();

generateLabelInstruction(TR::InstOpCode::label, node, residueBeginLoopLabel, cg);
generateRegRegInstruction(TR::InstOpCode::CMP4RegReg, node, index, length, cg);
Expand Down

0 comments on commit 92742f1

Please sign in to comment.