diff options
author | Mark Shannon <mark@hotpy.org> | 2023-12-20 14:27:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 14:27:25 (GMT) |
commit | e96f26083bff31e86c068aa22542e91f38293ea3 (patch) | |
tree | 3b351f4fc54eff3c08caf811edbcd7c9fcb40c5d /Python/specialize.c | |
parent | a545a86ec64fbab325db101bdd8964f524a89790 (diff) | |
download | cpython-e96f26083bff31e86c068aa22542e91f38293ea3.zip cpython-e96f26083bff31e86c068aa22542e91f38293ea3.tar.gz cpython-e96f26083bff31e86c068aa22542e91f38293ea3.tar.bz2 |
GH-111485: Generate instruction and uop metadata (GH-113287)
Diffstat (limited to 'Python/specialize.c')
-rw-r--r-- | Python/specialize.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/specialize.c b/Python/specialize.c index 7c2a4a4..369b962 100644 --- a/Python/specialize.c +++ b/Python/specialize.c @@ -10,6 +10,7 @@ #include "pycore_moduleobject.h" #include "pycore_object.h" #include "pycore_opcode_metadata.h" // _PyOpcode_Caches +#include "pycore_uop_metadata.h" // _PyOpcode_uop_name #include "pycore_opcode_utils.h" // RESUME_AT_FUNC_START #include "pycore_pylifecycle.h" // _PyOS_URandomNonblock() #include "pycore_runtime.h" // _Py_ID() |