aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2011-03-11 17:46:59 +0000
committerAndrew Trick <atrick@apple.com>2011-03-11 17:46:59 +0000
commit710d5da3066ddb556ad6e833e88e5ca7ba0869c4 (patch)
tree99353eb4e5ed0b410c30bbd950e9a4afc00203a9 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
parent64d05bc2812a1c590becd3439a894bff54ac341f (diff)
downloadllvm-710d5da3066ddb556ad6e833e88e5ca7ba0869c4.zip
llvm-710d5da3066ddb556ad6e833e88e5ca7ba0869c4.tar.gz
llvm-710d5da3066ddb556ad6e833e88e5ca7ba0869c4.tar.bz2
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
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index 48d9bbb..c6b1a2d 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -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,