diff --git a/lib/SILOptimizer/Transforms/DeadCodeElimination.cpp b/lib/SILOptimizer/Transforms/DeadCodeElimination.cpp index 11660e8862c..3557706133e 100644 --- a/lib/SILOptimizer/Transforms/DeadCodeElimination.cpp +++ b/lib/SILOptimizer/Transforms/DeadCodeElimination.cpp @@ -292,7 +292,7 @@ void DCE::markLive() { }); }; // If we have a begin_borrow of a @guaranteed operand, disable DCE'ing - // of parent borrow scopes. Dead reborrows needs complex handling, whuch + // of parent borrow scopes. Dead reborrows needs complex handling, which // is why it is disabled for now. if (borrowInst->getOperand()->getOwnershipKind() == OwnershipKind::Guaranteed) {