Reduce the unrolling limit
authorChris Lattner <sabre@nondot.org>
Sun, 18 Apr 2004 18:06:14 +0000 (18:06 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 18 Apr 2004 18:06:14 +0000 (18:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13040 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopUnroll.cpp

index 90de9e946daa38bc13a24ef1ec6f48f8c753017a..3794b810360f3bd64d3e41fc49deaf7d3e69d5c8 100644 (file)
@@ -35,7 +35,7 @@ namespace {
   Statistic<> NumUnrolled("loop-unroll", "Number of loops completely unrolled");
 
   cl::opt<unsigned>
-  UnrollThreshold("unroll-threshold", cl::init(250), cl::Hidden,
+  UnrollThreshold("unroll-threshold", cl::init(100), cl::Hidden,
                   cl::desc("The cut-off point for loop unrolling"));
 
   class LoopUnroll : public FunctionPass {