Skip to content

Commit

Permalink
fix from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Oct 29, 2024
1 parent df01ee8 commit 3863ed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/venom/analysis/liveness.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def analyze(self):
cfg = self.analyses_cache.request_analysis(CFGAnalysis)
self._reset_liveness()

worklist = deque(reversed(list(cfg.topsort())))
worklist = deque(cfg.dfs_walk)

while len(worklist) > 0:
bb = worklist.popleft()
Expand Down

0 comments on commit 3863ed2

Please sign in to comment.