mirror of
https://github.com/python/cpython.git
synced 2026-02-13 19:04:37 +00:00
JIT: Fix compiler warning from visibility attribute in typedef (#139981)
This commit is contained in:
parent
c98c5b3449
commit
57f4d09a6f
1 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ _Py_CODEUNIT *
|
|||
_JIT_ENTRY(
|
||||
_PyExecutorObject *exec, _PyInterpreterFrame *frame, _PyStackRef *stack_pointer, PyThreadState *tstate
|
||||
) {
|
||||
typedef DECLARE_TARGET((*jit_func));
|
||||
jit_func jitted = (jit_func)exec->jit_code;
|
||||
// Note that this is *not* a tail call
|
||||
jit_func_preserve_none jitted = (jit_func_preserve_none)exec->jit_code;
|
||||
return jitted(frame, stack_pointer, tstate);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue