Skip to content

Commit

Permalink
Update numba_rvsdg/tests/simulator.py
Browse files Browse the repository at this point in the history
Co-authored-by: esc <[email protected]>
  • Loading branch information
kc611 and esc authored Dec 11, 2023
1 parent d3c6118 commit 9c09208
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions numba_rvsdg/tests/simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,9 @@ def op_END_FOR(self, inst):
self.stack.pop()
self.stack.pop()

else:
raise NotImplementedError(PYVERSION)

def op_COPY(self, inst):
assert inst.argval > 0
self.stack.append(self.stack[-inst.argval])

0 comments on commit 9c09208

Please sign in to comment.