summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2023-04-11 10:15:09 (GMT)
committerGitHub <noreply@github.com>2023-04-11 10:15:09 (GMT)
commit33822d037a3381d239dcc532937138da6f3da669 (patch)
tree6e7a40570ef9833c73c4f79abdb8c2354679d8fa /Makefile.pre.in
parent78b763f63032a7185c0905c319ead9e9b35787b6 (diff)
downloadcpython-33822d037a3381d239dcc532937138da6f3da669.zip
cpython-33822d037a3381d239dcc532937138da6f3da669.tar.gz
cpython-33822d037a3381d239dcc532937138da6f3da669.tar.bz2
gh-87092: move assembler related code from compile.c to assemble.c (#103277)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index fefa5d4..dc22683 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -369,17 +369,18 @@ PYTHON_OBJS= \
Python/Python-ast.o \
Python/Python-tokenize.o \
Python/asdl.o \
+ Python/assemble.o \
Python/ast.o \
Python/ast_opt.o \
Python/ast_unparse.o \
Python/bltinmodule.o \
Python/ceval.o \
- Python/flowgraph.o \
Python/codecs.o \
Python/compile.o \
Python/context.o \
Python/dynamic_annotations.o \
Python/errors.o \
+ Python/flowgraph.o \
Python/frame.o \
Python/frozenmain.o \
Python/future.o \