Skip to content

Commit

Permalink
Update DataFlowAnalysis.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
LPeter1997 committed Oct 20, 2024
1 parent 5856867 commit d60a928
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,6 @@ private void AssociateAllNodesWithBlocksIfNeeded()

private void AssociateNodesWithBlock(IBasicBlock block)
{
foreach (var node in block) this.nodesToBlocks.Add(node, block);
foreach (var node in block) this.nodesToBlocks[node] = block;
}
}

0 comments on commit d60a928

Please sign in to comment.