summaryrefslogtreecommitdiff
path: root/PCbuild
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2017-12-14 16:47:20 +0900
committerGitHub <noreply@github.com>2017-12-14 16:47:20 +0900
commit7ea143ae795a9fd57eaccf490d316bdc13ee9065 (patch)
tree1276bfc657c9a9281c6152ed656a89abdaaff4b8 /PCbuild
parentb5fd9ad05e0f15f8272b8f1b829af22077230584 (diff)
downloadcpython-git-7ea143ae795a9fd57eaccf490d316bdc13ee9065.tar.gz
bpo-29469: Move constant folding to AST optimizer (GH-2858)
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/pythoncore.vcxproj1
-rw-r--r--PCbuild/pythoncore.vcxproj.filters3
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj
index b430e05b62..1dca3ccca1 100644
--- a/PCbuild/pythoncore.vcxproj
+++ b/PCbuild/pythoncore.vcxproj
@@ -356,6 +356,7 @@
<ClCompile Include="..\Python\_warnings.c" />
<ClCompile Include="..\Python\asdl.c" />
<ClCompile Include="..\Python\ast.c" />
+ <ClCompile Include="..\Python\ast_opt.c" />
<ClCompile Include="..\Python\bltinmodule.c" />
<ClCompile Include="..\Python\bootstrap_hash.c" />
<ClCompile Include="..\Python\ceval.c" />
diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters
index c9aa3da355..969ba0850b 100644
--- a/PCbuild/pythoncore.vcxproj.filters
+++ b/PCbuild/pythoncore.vcxproj.filters
@@ -824,6 +824,9 @@
<ClCompile Include="..\Python\ast.c">
<Filter>Python</Filter>
</ClCompile>
+ <ClCompile Include="..\Python\ast_opt.c">
+ <Filter>Python</Filter>
+ </ClCompile>
<ClCompile Include="..\Python\bltinmodule.c">
<Filter>Python</Filter>
</ClCompile>