Skip to content

Commit

Permalink
Merge branch 'master' into docs/v0.4.0-release
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper authored Jun 17, 2024
2 parents f263b2d + a72488c commit 623f322
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vyper/codegen/ir_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,8 @@ def unique_symbols(self):
for arg in children:
s = arg.unique_symbols
non_uniques = ret.intersection(s)
assert len(non_uniques) == 0, f"non-unique symbols {non_uniques}"
if len(non_uniques) != 0: # pragma: nocover
raise CompilerPanic(f"non-unique symbols {non_uniques}")
ret |= s
return ret

Expand Down
2 changes: 2 additions & 0 deletions vyper/venom/ir_node_to_venom.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@

# convert IRnode directly to venom
def ir_node_to_venom(ir: IRnode) -> IRContext:
_ = ir.unique_symbols # run unique symbols check

global _global_symbols, _external_functions
_global_symbols = {}
_external_functions = {}
Expand Down

0 comments on commit 623f322

Please sign in to comment.