Skip to content

Commit

Permalink
Merge pull request #35 from esc/fix_python_ingestion
Browse files Browse the repository at this point in the history
Fix python ingestion
  • Loading branch information
kc611 authored Apr 4, 2023
2 parents 1dce90f + dd17688 commit 647a444
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numba_rvsdg/core/datastructures/flow_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def build_basicblocks(self: "FlowInfo", end_offset=None) -> "SCFG":
term_offset = _prev_inst_offset(end)
if term_offset not in self.jump_insts:
# implicit jump
targets = (names[end],)
targets = [names[end],]
else:
targets = [names[o] for o in self.jump_insts[term_offset]]

Expand Down

0 comments on commit 647a444

Please sign in to comment.