Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Sep 25, 2024
1 parent 669c170 commit 248370d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions vyper/venom/passes/store_expansion.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ class StoreExpansionPass(IRPass):
"""

def run_pass(self):
dfg = self.analyses_cache.request_analysis(DFGAnalysis)

for bb in self.function.get_basic_blocks():
self._process_bb(bb)

Expand All @@ -23,7 +21,7 @@ def _process_bb(self, bb):
i = 0
while i < len(bb.instructions):
inst = bb.instructions[i]
if inst.opcode in ("store", "offset", "phi"):
if inst.opcode in ("store", "offset", "phi", "param"):
i += 1
continue

Expand Down

0 comments on commit 248370d

Please sign in to comment.