From: Easwaran Raman Date: Fri, 4 Aug 2017 17:15:17 +0000 (+0000) Subject: [Inliner] Fix a typo in option description. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4bea5698998043eb71c23c936db1e3b12cd8f23;p=llvm [Inliner] Fix a typo in option description. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@310073 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/InlineCost.cpp b/lib/Analysis/InlineCost.cpp index a06b6072e49..ffb49fe30fc 100644 --- a/lib/Analysis/InlineCost.cpp +++ b/lib/Analysis/InlineCost.cpp @@ -78,7 +78,7 @@ static cl::opt ColdCallSiteRelFreq( static cl::opt HotCallSiteRelFreq( "hot-callsite-rel-freq", cl::Hidden, cl::init(60), cl::ZeroOrMore, - cl::desc("Maxmimum block frequency, expressed as a multiple of caller's " + cl::desc("Minimum block frequency, expressed as a multiple of caller's " "entry frequency, for a callsite to be hot in the absence of " "profile information."));