[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

llvm-svn: 305782
This commit is contained in:
Max Kazantsev 2017-06-20 08:37:31 +00:00
parent 22ab175658
commit 0bcf6ec85c
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ static cl::opt<unsigned> MulOpsInlineThreshold(
static cl::opt<unsigned> AddOpsInlineThreshold( static cl::opt<unsigned> AddOpsInlineThreshold(
"scev-addops-inline-threshold", cl::Hidden, "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)); cl::init(500));
static cl::opt<unsigned> MaxSCEVCompareDepth( static cl::opt<unsigned> MaxSCEVCompareDepth(