mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
gh-131238: Add missing pycore_function.h includes for JIT compiler (#131571)
This commit is contained in:
parent
d9411ae3c2
commit
49fb75c676
3 changed files with 6 additions and 3 deletions
|
@ -10,6 +10,7 @@
|
|||
#include "pycore_dict.h"
|
||||
#include "pycore_floatobject.h"
|
||||
#include "pycore_frame.h"
|
||||
#include "pycore_function.h"
|
||||
#include "pycore_interpframe.h"
|
||||
#include "pycore_intrinsics.h"
|
||||
#include "pycore_list.h"
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include "pycore_backoff.h"
|
||||
#include "pycore_bitutils.h" // _Py_popcount32()
|
||||
#include "pycore_code.h" // _Py_GetBaseCodeUnit
|
||||
#include "pycore_function.h" // _PyFunction_LookupByVersion()
|
||||
#include "pycore_interpframe.h"
|
||||
#include "pycore_object.h" // _PyObject_GC_UNTRACK()
|
||||
#include "pycore_opcode_metadata.h" // _PyOpcode_OpName[]
|
||||
|
|
|
@ -2,13 +2,15 @@
|
|||
|
||||
#include "pycore_backoff.h"
|
||||
#include "pycore_call.h"
|
||||
#include "pycore_ceval.h"
|
||||
#include "pycore_cell.h"
|
||||
#include "pycore_ceval.h"
|
||||
#include "pycore_code.h"
|
||||
#include "pycore_descrobject.h"
|
||||
#include "pycore_dict.h"
|
||||
#include "pycore_floatobject.h"
|
||||
#include "pycore_emscripten_signal.h"
|
||||
#include "pycore_floatobject.h"
|
||||
#include "pycore_frame.h"
|
||||
#include "pycore_function.h"
|
||||
#include "pycore_genobject.h"
|
||||
#include "pycore_interpframe.h"
|
||||
#include "pycore_intrinsics.h"
|
||||
|
@ -22,7 +24,6 @@
|
|||
#include "pycore_range.h"
|
||||
#include "pycore_setobject.h"
|
||||
#include "pycore_sliceobject.h"
|
||||
#include "pycore_descrobject.h"
|
||||
#include "pycore_stackref.h"
|
||||
#include "pycore_tuple.h"
|
||||
#include "pycore_unicodeobject.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue