We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bfe86c commit 4a57d8aCopy full SHA for 4a57d8a
Tools/jit/trampoline.c
@@ -10,7 +10,6 @@ _Py_CODEUNIT *
10
_JIT_ENTRY(
11
_PyExecutorObject *exec, _PyInterpreterFrame *frame, _PyStackRef *stack_pointer, PyThreadState *tstate
12
) {
13
- typedef DECLARE_TARGET((*jit_func));
14
- jit_func jitted = (jit_func)exec->jit_code;
+ jit_func_preserve_none jitted = (jit_func_preserve_none)exec->jit_code;
15
return jitted(frame, stack_pointer, tstate);
16
}
0 commit comments