From: Robert Bradshaw Date: Sat, 31 Jul 2010 19:11:16 +0000 (-0700) Subject: Another needed optimization. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5c494cc12d8b45f55691f30e4d00d8514be9d2c5;p=cython.git Another needed optimization. --- diff --git a/Cython/Compiler/Main.py b/Cython/Compiler/Main.py index 51d9e074..a25ec58f 100644 --- a/Cython/Compiler/Main.py +++ b/Cython/Compiler/Main.py @@ -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(),