Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add missing terminator in certain cases when tracing in the new JIT compiler.
2 changes: 1 addition & 1 deletion Python/optimizer.c
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ _PyJit_translate_single_bytecode_to_trace(
}

if (!_tstate->jit_tracer_state.prev_state.dependencies_still_valid) {
goto done;
goto full;
}

// This happens when a recursive call happens that we can't trace. Such as Python -> C -> Python calls
Expand Down
Loading