Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
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
fix warning 'visibility' attribute ignored
  • Loading branch information
chris-eibl committed Oct 18, 2025
commit 4a57d8a03f22515ee9b43a597e029a777373b18d
3 changes: 1 addition & 2 deletions Tools/jit/trampoline.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ _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;
jit_func_preserve_none jitted = (jit_func_preserve_none)exec->jit_code;
return jitted(frame, stack_pointer, tstate);
}
Loading