summaryrefslogtreecommitdiffstats
path: root/PCbuild9
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-04 18:42:04 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-04 18:42:04 (GMT)
commit43f827b9fabd616fab6e62db7d5487d040b05179 (patch)
tree9370b715390a0fba2f5ec48e8a3800cad4e8ad78 /PCbuild9
parentc5d98b4eee90ec465b73ea9488f3653aaf12bbd0 (diff)
downloadcpython-43f827b9fabd616fab6e62db7d5487d040b05179.zip
cpython-43f827b9fabd616fab6e62db7d5487d040b05179.tar.gz
cpython-43f827b9fabd616fab6e62db7d5487d040b05179.tar.bz2
These optimizations create smaller and a bit faster code on my machine. I've also disabled an optimization that may be dangerous. Intrinsic functions conflict with errno.
Diffstat (limited to 'PCbuild9')
-rw-r--r--PCbuild9/pginstrument.vsprops8
1 files changed, 4 insertions, 4 deletions
diff --git a/PCbuild9/pginstrument.vsprops b/PCbuild9/pginstrument.vsprops
index cd904d3..93b9687 100644
--- a/PCbuild9/pginstrument.vsprops
+++ b/PCbuild9/pginstrument.vsprops
@@ -8,10 +8,10 @@
>
<Tool
Name="VCCLCompilerTool"
- Optimization="3"
- InlineFunctionExpansion="2"
- EnableIntrinsicFunctions="true"
- FavorSizeOrSpeed="1"
+ Optimization="2"
+ InlineFunctionExpansion="1"
+ EnableIntrinsicFunctions="false"
+ FavorSizeOrSpeed="2"
OmitFramePointers="true"
EnableFiberSafeOptimizations="false"
WholeProgramOptimization="true"