File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
include/swift/SILOptimizer/Utils
lib/SILOptimizer/Analysis Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ class CanonicalizeOSSALifetime {
190
190
bool pruneDebug;
191
191
192
192
NonLocalAccessBlockAnalysis *accessBlockAnalysis;
193
- // Lazilly initialize accessBlocks only when
193
+ // Lazily initialize accessBlocks only when
194
194
// extendLivenessThroughOverlappingAccess is invoked.
195
195
NonLocalAccessBlocks *accessBlocks = nullptr ;
196
196
Original file line number Diff line number Diff line change 15
15
16
16
using namespace swift ;
17
17
18
- // Populate this->accessBlocks with
18
+ // Populate this->accessBlocks with all blocks containing a non-local
19
+ // end_access.
19
20
void NonLocalAccessBlocks::compute () {
20
21
for (SILBasicBlock &block : *this ->function ) {
21
22
for (SILInstruction &inst : block) {
You can’t perform that action at this time.
0 commit comments