From 7f6e884f3acc860c1cf1b773c9659e8f861263e7 Mon Sep 17 00:00:00 2001 From: Nadeshiko Manju Date: Fri, 25 Oct 2024 23:43:02 +0800 Subject: GH-125911: Call combine_symbol_mask on the initial trampoline of a trace (GH-125973) --- Python/jit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/jit.c b/Python/jit.c index 963bde2..135daeb 100644 --- a/Python/jit.c +++ b/Python/jit.c @@ -473,6 +473,7 @@ _PyJIT_Compile(_PyExecutorObject *executor, const _PyUOpInstruction trace[], siz group = &trampoline; code_size += group->code_size; data_size += group->data_size; + combine_symbol_mask(group->trampoline_mask, state.trampolines.mask); for (size_t i = 0; i < length; i++) { const _PyUOpInstruction *instruction = &trace[i]; group = &stencil_groups[instruction->opcode]; -- cgit v0.12