summaryrefslogtreecommitdiffstats
path: root/Python/assemble.c
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2023-07-12 10:30:25 (GMT)
committerGitHub <noreply@github.com>2023-07-12 10:30:25 (GMT)
commit2ca008e2b738b8c08b4bf46b2b23f315d6510d92 (patch)
treeca5812fe257be990c39b22c58c6d1249b17cbb6e /Python/assemble.c
parent42bc485a24f0f67751474bd1697e1beb4a783b9a (diff)
downloadcpython-2ca008e2b738b8c08b4bf46b2b23f315d6510d92.zip
cpython-2ca008e2b738b8c08b4bf46b2b23f315d6510d92.tar.gz
cpython-2ca008e2b738b8c08b4bf46b2b23f315d6510d92.tar.bz2
gh-105481: move Python/opcode_metadata.h to Include/internal/pycore_opcode_metadata.h (#106673)
Diffstat (limited to 'Python/assemble.c')
-rw-r--r--Python/assemble.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/assemble.c b/Python/assemble.c
index ff7bca2..b701253 100644
--- a/Python/assemble.c
+++ b/Python/assemble.c
@@ -1,11 +1,11 @@
#include <stdbool.h>
#include "Python.h"
-#include "pycore_code.h" // write_location_entry_start()
+#include "pycore_code.h" // write_location_entry_start()
#include "pycore_compile.h"
-#include "pycore_opcode.h" // _PyOpcode_Caches[] and opcode category macros
-#include "pycore_opcode_utils.h" // IS_BACKWARDS_JUMP_OPCODE
-#include "opcode_metadata.h" // IS_PSEUDO_INSTR
+#include "pycore_opcode.h" // _PyOpcode_Caches[] and opcode category macros
+#include "pycore_opcode_utils.h" // IS_BACKWARDS_JUMP_OPCODE
+#include "pycore_opcode_metadata.h" // IS_PSEUDO_INSTR
#define DEFAULT_CODE_SIZE 128