Skip to content

Commit dee802d

Browse files
committed
Add is_recursive=True to the main JitDriver
This seems to be required in recent versions of pypy/rpython.
1 parent 974f85d commit dee802d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pixie/vm/interpreter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def get_location(ip, sp, is_continuation, bc, base_code):
1111
return code.BYTECODES[bc[ip]] + " in " + str(base_code._name)
1212

1313
jitdriver = JitDriver(greens=["ip", "sp", "is_continuation", "bc", "base_code"], reds=["frame"], virtualizables=["frame"],
14-
get_printable_location=get_location)
14+
get_printable_location=get_location, is_recursive=True)
1515

1616

1717
@elidable

0 commit comments

Comments
 (0)