Skip to content

Commit d502355

Browse files
authored
Merge pull request #19048 from kitasuke/fix_typo_of_marked_uninitialized
2 parents 1813b8b + b6950fc commit d502355

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SILOptimizer/Transforms/AllocBoxToStack.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ findUnexpectedBoxUse(SILValue Box, bool examinePartialApply,
328328
(!inAppliedFunction && isa<DeallocBoxInst>(User)))
329329
continue;
330330

331-
// If our user instruction is a copy_value or a marked_uninitialized, visit
331+
// If our user instruction is a copy_value or a mark_uninitialized, visit
332332
// the users recursively.
333333
if (isa<MarkUninitializedInst>(User) || isa<CopyValueInst>(User)) {
334334
llvm::copy(cast<SingleValueInstruction>(User)->getUses(),

0 commit comments

Comments
 (0)