[llvm] r302311 - Fix spelling error in command line option description. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri May 5 15:31:11 PDT 2017
Author: ctopper
Date: Fri May 5 17:31:11 2017
New Revision: 302311
URL: http://llvm.org/viewvc/llvm-project?rev=302311&view=rev
Log:
Fix spelling error in command line option description. NFC
Modified:
llvm/trunk/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
Modified: llvm/trunk/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp?rev=302311&r1=302310&r2=302311&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp Fri May 5 17:31:11 2017
@@ -70,13 +70,13 @@ static cl::opt<bool> DisableICP("disable
// For debug use only.
static cl::opt<unsigned>
ICPCutOff("icp-cutoff", cl::init(0), cl::Hidden, cl::ZeroOrMore,
- cl::desc("Max number of promotions for this compilaiton"));
+ cl::desc("Max number of promotions for this compilation"));
// If ICPCSSkip is non zero, the first ICPCSSkip callsites will be skipped.
// For debug use only.
static cl::opt<unsigned>
ICPCSSkip("icp-csskip", cl::init(0), cl::Hidden, cl::ZeroOrMore,
- cl::desc("Skip Callsite up to this number for this compilaiton"));
+ cl::desc("Skip Callsite up to this number for this compilation"));
// Set if the pass is called in LTO optimization. The difference for LTO mode
// is the pass won't prefix the source module name to the internal linkage
More information about the llvm-commits
mailing list