Skip to content

Commit

Permalink
float calloca
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Nov 26, 2024
1 parent c647456 commit f660a3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/venom/passes/float_allocas.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def run_pass(self):
# Extract alloca instructions
non_alloca_instructions = []
for inst in bb.instructions:
if inst.opcode in ("alloca", "palloca"):
if inst.opcode in ("alloca", "palloca", "calloca"):
# note: order of allocas impacts bytecode.
# TODO: investigate.
entry_bb.insert_instruction(inst)
Expand Down

0 comments on commit f660a3c

Please sign in to comment.