Skip to content

Commit b6ab21e

Browse files
committed
Add more JIT includes
1 parent 757f820 commit b6ab21e

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

Python/jit.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,21 @@
88
#include "pycore_ceval.h"
99
#include "pycore_critical_section.h"
1010
#include "pycore_dict.h"
11+
#include "pycore_floatobject.h"
12+
#include "pycore_frame.h"
13+
#include "pycore_interpframe.h"
1114
#include "pycore_intrinsics.h"
15+
#include "pycore_list.h"
1216
#include "pycore_long.h"
1317
#include "pycore_opcode_metadata.h"
1418
#include "pycore_opcode_utils.h"
1519
#include "pycore_optimizer.h"
1620
#include "pycore_pyerrors.h"
1721
#include "pycore_setobject.h"
1822
#include "pycore_sliceobject.h"
23+
#include "pycore_tuple.h"
24+
#include "pycore_unicodeobject.h"
25+
1926
#include "pycore_jit.h"
2027

2128
// Memory management stuff: ////////////////////////////////////////////////////

Tools/jit/template.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@
44
#include "pycore_call.h"
55
#include "pycore_ceval.h"
66
#include "pycore_cell.h"
7+
#include "pycore_code.h"
78
#include "pycore_dict.h"
9+
#include "pycore_floatobject.h"
810
#include "pycore_emscripten_signal.h"
11+
#include "pycore_frame.h"
12+
#include "pycore_genobject.h"
13+
#include "pycore_interpframe.h"
914
#include "pycore_intrinsics.h"
1015
#include "pycore_jit.h"
16+
#include "pycore_list.h"
1117
#include "pycore_long.h"
1218
#include "pycore_opcode_metadata.h"
1319
#include "pycore_opcode_utils.h"
@@ -18,6 +24,8 @@
1824
#include "pycore_sliceobject.h"
1925
#include "pycore_descrobject.h"
2026
#include "pycore_stackref.h"
27+
#include "pycore_tuple.h"
28+
#include "pycore_unicodeobject.h"
2129

2230
#include "ceval_macros.h"
2331

0 commit comments

Comments
 (0)