Skip to content

Commit 7d7ae6b

Browse files
authored
Merge pull request #76155 from rjmansfield/sil-desc-typos
SIL: Fix cl::desc typos. [NFC]
2 parents f6791a2 + 908d97d commit 7d7ae6b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/swift/SILOptimizer/PassManager/Passes.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ PASS(MoveCondFailToPreds, "move-cond-fail-to-preds",
327327
PASS(NoReturnFolding, "noreturn-folding",
328328
"Prune Control Flow at No-Return Calls Using SIL unreachable")
329329
SWIFT_FUNCTION_PASS(ObjCBridgingOptimization, "objc-bridging-opt",
330-
"Optimize ObjectiveC briging operations")
330+
"Optimize ObjectiveC bridging operations")
331331
SWIFT_FUNCTION_PASS(ObjectOutliner, "object-outliner",
332332
"Outlining of Global Objects")
333333
PASS(Outliner, "outliner",

lib/SILOptimizer/IPO/ClosureSpecializer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ STATISTIC(NumPropagatedClosuresNotEliminated,
9696
llvm::cl::opt<bool> EliminateDeadClosures(
9797
"closure-specialize-eliminate-dead-closures", llvm::cl::init(true),
9898
llvm::cl::desc("Do not eliminate dead closures after closure "
99-
"specialization. This is meant ot be used when testing."));
99+
"specialization. This is meant to be used when testing."));
100100

101101
//===----------------------------------------------------------------------===//
102102
// Utility

0 commit comments

Comments
 (0)