Replace -dag-chain-limit flag with constant. It has survived a release cycle without...
authorAndrew Trick <atrick@apple.com>
Fri, 11 Mar 2011 17:46:59 +0000 (17:46 +0000)
committerAndrew Trick <atrick@apple.com>
Fri, 11 Mar 2011 17:46:59 +0000 (17:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127468 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

index 48d9bbb5132eb863adca726dc33fd37bb5e4f4a8..c6b1a2d612a0ed5389bfb175b0a72d59fa3f2870 100644 (file)
@@ -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,