summaryrefslogtreecommitdiffstats
path: root/Python/jit.c
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2025-03-20 15:39:38 (GMT)
committerGitHub <noreply@github.com>2025-03-20 15:39:38 (GMT)
commit7ebd71ee14a497bb5dc7a693dd00f074a9f4831f (patch)
tree15c6214a266592b9ade709dd45c818a5f972f0a4 /Python/jit.c
parent443c0cd17c5b0c71ee45c3621777454c6b8b0cbd (diff)
downloadcpython-7ebd71ee14a497bb5dc7a693dd00f074a9f4831f.zip
cpython-7ebd71ee14a497bb5dc7a693dd00f074a9f4831f.tar.gz
cpython-7ebd71ee14a497bb5dc7a693dd00f074a9f4831f.tar.bz2
GH-131498: Remove conditional stack effects (GH-131499)
* Adds some missing #includes
Diffstat (limited to 'Python/jit.c')
-rw-r--r--Python/jit.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Python/jit.c b/Python/jit.c
index 95b5a1b..1f4873e 100644
--- a/Python/jit.c
+++ b/Python/jit.c
@@ -8,7 +8,11 @@
#include "pycore_ceval.h"
#include "pycore_critical_section.h"
#include "pycore_dict.h"
+#include "pycore_floatobject.h"
+#include "pycore_frame.h"
+#include "pycore_interpframe.h"
#include "pycore_intrinsics.h"
+#include "pycore_list.h"
#include "pycore_long.h"
#include "pycore_opcode_metadata.h"
#include "pycore_opcode_utils.h"
@@ -16,6 +20,9 @@
#include "pycore_pyerrors.h"
#include "pycore_setobject.h"
#include "pycore_sliceobject.h"
+#include "pycore_tuple.h"
+#include "pycore_unicodeobject.h"
+
#include "pycore_jit.h"
// Memory management stuff: ////////////////////////////////////////////////////