/// Mandatory IRGen preparation. It is the caller's job to set the set stage to /// "lowered" after running this pipeline. SILPassPipelinePlan SILPassPipelinePlan::getLoweringPassPipeline() { SILPassPipelinePlan P; P.startPipeline("Address Lowering"); P.addSILCleanup(); P.addAddressLowering(); return P; }
/// Mandatory IRGen preparation. It is the caller's job to set the set stage to /// "lowered" after running this pipeline. SILPassPipelinePlan SILPassPipelinePlan::getLoweringPassPipeline() { SILPassPipelinePlan P; P.startPipeline("Address Lowering"); P.addIRGenPrepare(); P.addAddressLowering(); return P; }