diff options
author | Easwaran Raman <eraman@google.com> | 2017-08-04 17:15:17 +0000 |
---|---|---|
committer | Easwaran Raman <eraman@google.com> | 2017-08-04 17:15:17 +0000 |
commit | ff77cc750cf99b875915a37c1146c5f56de0edc8 (patch) | |
tree | 8b61fbfc7234b3e04b3b46d989c35aac8b46abf1 /llvm/lib | |
parent | 9cda5991514db77774044816fd7fbf8897300231 (diff) | |
download | bcm5719-llvm-ff77cc750cf99b875915a37c1146c5f56de0edc8.tar.gz bcm5719-llvm-ff77cc750cf99b875915a37c1146c5f56de0edc8.zip |
[Inliner] Fix a typo in option description. NFC.
llvm-svn: 310073
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Analysis/InlineCost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InlineCost.cpp b/llvm/lib/Analysis/InlineCost.cpp index a06b6072e49..ffb49fe30fc 100644 --- a/llvm/lib/Analysis/InlineCost.cpp +++ b/llvm/lib/Analysis/InlineCost.cpp @@ -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.")); |