Skip to content

Commit 7f6e884

Browse files
authored
GH-125911: Call combine_symbol_mask on the initial trampoline of a trace (GH-125973)
1 parent 417c130 commit 7f6e884

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Python/jit.c

+1
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,7 @@ _PyJIT_Compile(_PyExecutorObject *executor, const _PyUOpInstruction trace[], siz
473473
group = &trampoline;
474474
code_size += group->code_size;
475475
data_size += group->data_size;
476+
combine_symbol_mask(group->trampoline_mask, state.trampolines.mask);
476477
for (size_t i = 0; i < length; i++) {
477478
const _PyUOpInstruction *instruction = &trace[i];
478479
group = &stencil_groups[instruction->opcode];

0 commit comments

Comments
 (0)