Skip to content

Commit b30b2d9

Browse files
committed
Merge pull request #462 from heyLu/fix-jitdriver
Add `is_recursive=True` to the main JitDriver
2 parents 974f85d + dee802d commit b30b2d9

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)