r113526 introduced an unintended change to the loop unrolling threshold. Revert it.
authorOwen Anderson <resistor@mac.com>
Thu, 9 Sep 2010 19:11:57 +0000 (19:11 +0000)
committerOwen Anderson <resistor@mac.com>
Thu, 9 Sep 2010 19:11:57 +0000 (19:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113527 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopUnrollPass.cpp

index 9c5c5912239c5218bdeae0de0b312101ca5e351d..4d23178174bef24705133798e3b436b154202f9e 100644 (file)
@@ -27,7 +27,7 @@
 using namespace llvm;
 
 static cl::opt<unsigned>
-UnrollThreshold("unroll-threshold", cl::init(0), cl::Hidden,
+UnrollThreshold("unroll-threshold", cl::init(200), cl::Hidden,
   cl::desc("The cut-off point for automatic loop unrolling"));
 
 static cl::opt<unsigned>