1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

[Inliner] Fix a typo in option description. NFC.

llvm-svn: 310073
This commit is contained in:
Easwaran Raman 2017-08-04 17:15:17 +00:00
parent cb3962181a
commit 203f16a0ae

View File

@ -78,7 +78,7 @@ static cl::opt<int> ColdCallSiteRelFreq(
static cl::opt<int> 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."));