Skip to content

Commit

Permalink
Bring back bb output
Browse files Browse the repository at this point in the history
  • Loading branch information
harkal committed Jan 3, 2024
1 parent 408ff31 commit e1c5348
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vyper/compiler/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ def build_interface_output(compiler_data: CompilerData) -> str:

def build_bb_output(compiler_data: CompilerData) -> IRnode:
compiler_data.experimental_codegen = True
return compiler_data.ir_nodes
return compiler_data.venom_functions[0]


def build_bb_runtime_output(compiler_data: CompilerData) -> IRnode:
compiler_data.experimental_codegen = True
return compiler_data.ir_runtime
return compiler_data.venom_functions[1]


def build_ir_output(compiler_data: CompilerData) -> IRnode:
Expand Down

0 comments on commit e1c5348

Please sign in to comment.