Reduce the unrolling limit

llvm-svn: 13040
This commit is contained in:
Chris Lattner 2004-04-18 18:06:14 +00:00
parent 30ae18155d
commit d15250240c
1 changed files with 1 additions and 1 deletions

View 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 {