forked from OSchip/llvm-project
Replace -dag-chain-limit flag with constant. It has survived a release cycle without being touched, so no longer needs to pollute the hidden-help text.
llvm-svn: 127468
This commit is contained in:
parent
64d05bc281
commit
710d5da306
|
@ -84,9 +84,7 @@ LimitFPPrecision("limit-float-precision",
|
|||
// %buffer = alloca [4096 x i8]
|
||||
// %data = load [4096 x i8]* %argPtr
|
||||
// store [4096 x i8] %data, [4096 x i8]* %buffer
|
||||
static cl::opt<unsigned>
|
||||
MaxParallelChains("dag-chain-limit", cl::desc("Max parallel isel dag chains"),
|
||||
cl::init(64), cl::Hidden);
|
||||
static const unsigned MaxParallelChains = 64;
|
||||
|
||||
static SDValue getCopyFromPartsVector(SelectionDAG &DAG, DebugLoc DL,
|
||||
const SDValue *Parts, unsigned NumParts,
|
||||
|
|
Loading…
Reference in New Issue