forked from OSchip/llvm-project
[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:
parent
22ab175658
commit
0bcf6ec85c
|
@ -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(
|
||||||
|
|
Loading…
Reference in New Issue