Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyAyersMS committed Nov 20, 2024
1 parent b63eb14 commit 4274199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/jit/flowgraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6006,7 +6006,7 @@ bool FlowGraphNaturalLoop::CanDuplicate(INDEBUG(const char** reason))
unsigned outermostBlockIndex = comp->ehTrueEnclosingTryIndexIL(blockIndex);

if ((headerInTry && (outermostBlockIndex == header->getTryIndex())) ||
!headerInTry && (outermostBlockIndex == EHblkDsc::NO_ENCLOSING_INDEX))
(!headerInTry && (outermostBlockIndex == EHblkDsc::NO_ENCLOSING_INDEX)))
{
tryRegionsToClone.Push(block);
}
Expand Down

0 comments on commit 4274199

Please sign in to comment.