From ff77cc750cf99b875915a37c1146c5f56de0edc8 Mon Sep 17 00:00:00 2001 From: Easwaran Raman Date: Fri, 4 Aug 2017 17:15:17 +0000 Subject: [PATCH] [Inliner] Fix a typo in option description. NFC. llvm-svn: 310073 --- llvm/lib/Analysis/InlineCost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Analysis/InlineCost.cpp b/llvm/lib/Analysis/InlineCost.cpp index a06b6072e496..ffb49fe30fcf 100644 --- a/llvm/lib/Analysis/InlineCost.cpp +++ b/llvm/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."));