From: Max Kazantsev Date: Tue, 20 Jun 2017 08:37:31 +0000 (+0000) Subject: [SCEV][NFC] Fix a misleading description of AddOpsInlineThreshold X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e1bef1bc313535c7d18c8ac8c92c5c50766505a5;p=llvm [SCEV][NFC] Fix a misleading description of AddOpsInlineThreshold The description of this option was copy-pasted from another one and does not correspond to reality. Differential Revision: https://reviews.llvm.org/D34390 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305782 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index aebc80a0a88..59f0b22e912 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -130,7 +130,7 @@ static cl::opt MulOpsInlineThreshold( static cl::opt AddOpsInlineThreshold( "scev-addops-inline-threshold", cl::Hidden, - cl::desc("Threshold for inlining multiplication operands into a SCEV"), + cl::desc("Threshold for inlining addition operands into a SCEV"), cl::init(500)); static cl::opt MaxSCEVCompareDepth(