Skip to content

Commit

Permalink
fix: unique symbol name
Browse files Browse the repository at this point in the history
  • Loading branch information
trocher committed Mar 8, 2024
1 parent 787c562 commit 31d5465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/codegen/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ def STORE(ptr: IRnode, val: IRnode) -> IRnode:
if ptr.location in (MEMORY, IMMUTABLES):
return IRnode.from_list(store)

return IRnode.from_list(ensure_eval_once(_freshname(f"{op}_"), store))
return IRnode.from_list(ensure_eval_once(f"{op}_", store))


# Unwrap location
Expand Down

0 comments on commit 31d5465

Please sign in to comment.