From: Chris Lattner Date: Sun, 18 Apr 2004 18:06:14 +0000 (+0000) Subject: Reduce the unrolling limit X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e3a55865bb35b9622af9c76c0dbd9a55a003e08a;p=oota-llvm.git Reduce the unrolling limit git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13040 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LoopUnroll.cpp b/lib/Transforms/Scalar/LoopUnroll.cpp index 90de9e946da..3794b810360 100644 --- a/lib/Transforms/Scalar/LoopUnroll.cpp +++ b/lib/Transforms/Scalar/LoopUnroll.cpp @@ -35,7 +35,7 @@ namespace { Statistic<> NumUnrolled("loop-unroll", "Number of loops completely unrolled"); cl::opt - 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 {