Skip to content

Commit

Permalink
JIT: Unroll newly recognized loops (dotnet#96752)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobbotsch committed Jan 12, 2024
1 parent 602ad47 commit dfbda9a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/coreclr/jit/optimizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3430,12 +3430,6 @@ PhaseStatus Compiler::optUnrollLoops()
// Visit loops in post order (inner loops before outer loops).
for (FlowGraphNaturalLoop* loop : m_loops->InPostOrder())
{
// TODO-Quirk: Remove
if (!loop->GetHeader()->HasFlag(BBF_OLD_LOOP_HEADER_QUIRK))
{
continue;
}

if (BitVecOps::IsMember(&loopTraits, loopsWithUnrolledDescendant, loop->GetIndex()))
{
continue;
Expand Down

0 comments on commit dfbda9a

Please sign in to comment.