mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[g-arc-opts] Enable the Global ARC Optimizer by default.
Keep in mind that there is still more work to be done in the optimizer related to loops, partial merging, etc. But this is the most basic multiple basic block optimizer that has the features we want. Swift SVN r18707
This commit is contained in:
@@ -104,7 +104,7 @@ void swift::runSILOptimizationPasses(SILModule &Module,
|
||||
PM.add(createSimplifyCFG());
|
||||
PM.add(createDevirtualization());
|
||||
PM.add(createEnumSimplification());
|
||||
PM.add(createARCOpts());
|
||||
PM.add(createGlobalARCOpts());
|
||||
PM.add(createAllocBoxToStack());
|
||||
PM.add(createDeadObjectElimination());
|
||||
PM.add(createDCE());
|
||||
|
||||
Reference in New Issue
Block a user