mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-25 06:05:05 +00:00
16 lines
378 B
C
16 lines
378 B
C
#include "Python.h"
|
|
|
|
#include "pycore_ceval.h"
|
|
#include "pycore_frame.h"
|
|
#include "pycore_jit.h"
|
|
|
|
#include "jit.h"
|
|
|
|
_Py_CODEUNIT *
|
|
_JIT_ENTRY(_PyInterpreterFrame *frame, _PyStackRef *stack_pointer, PyThreadState *tstate)
|
|
{
|
|
// Note that this is *not* a tail call:
|
|
PATCH_VALUE(jit_func_preserve_none, call, _JIT_CONTINUE);
|
|
return call(frame, stack_pointer, tstate);
|
|
}
|