Commit 5a2287ca authored by Stefan Behnel's avatar Stefan Behnel

change pipeline order to include tree changes made by structural optimisers in...

change pipeline order to include tree changes made by structural optimisers in OptimizeBuiltinCalls run
parent 26c7f34c
......@@ -197,12 +197,12 @@ def create_pipeline(context, mode, exclude_classes=()):
AnalyseExpressionsTransform(context),
FindInvalidUseOfFusedTypes(context),
ExpandInplaceOperators(context),
IterationTransform(context),
SwitchTransform(context),
OptimizeBuiltinCalls(context), ## Necessary?
CreateClosureClasses(context), ## After all lookups and type inference
CalculateQualifiedNamesTransform(context),
ConsolidateOverflowCheck(context),
IterationTransform(context),
SwitchTransform(context),
DropRefcountingTransform(),
FinalOptimizePhase(context),
GilCheck(),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment