Skip to content

Commit

Permalink
add a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Nov 19, 2024
1 parent cacdd23 commit 5996992
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vyper/venom/passes/dft.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ class DFTPass(IRPass):
function: IRFunction
data_offspring: dict[IRInstruction, OrderedSet[IRInstruction]]
visited_instructions: OrderedSet[IRInstruction]
# data dependencies
# "data dependency analysis"
dda: dict[IRInstruction, OrderedSet[IRInstruction]]
# effect dependencies
# "effect dependency analysis"
eda: dict[IRInstruction, OrderedSet[IRInstruction]]

def run_pass(self) -> None:
Expand Down

0 comments on commit 5996992

Please sign in to comment.