Another needed optimization.
authorRobert Bradshaw <robertwb@math.washington.edu>
Sat, 31 Jul 2010 19:11:16 +0000 (12:11 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sat, 31 Jul 2010 19:11:16 +0000 (12:11 -0700)
Cython/Compiler/Main.py

index 51d9e0747fd86322a7f4ad1e5ac02c5295122c3a..a25ec58f5ae07f4512dd0f80546c8fe8fb416cb3 100644 (file)
@@ -148,11 +148,11 @@ class Context(object):
             EarlyReplaceBuiltinCalls(self),  ## Necessary?
             MarkAssignments(self),
             MarkOverflowingArithmetic(self),
-            TransformBuiltinMethods(self),
+            TransformBuiltinMethods(self),  ## Necessary?
             IntroduceBufferAuxiliaryVars(self),
             _check_c_declarations,
             AnalyseExpressionsTransform(self),
-#            OptimizeBuiltinCalls(self),
+            OptimizeBuiltinCalls(self),  ## Necessary?
 #            IterationTransform(),
             SwitchTransform(),
 #            DropRefcountingTransform(),