projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc43909
)
Reduce the unrolling limit
author
Chris Lattner
<sabre@nondot.org>
Sun, 18 Apr 2004 18:06:14 +0000
(18:06 +0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/lib/Transforms/Scalar/LoopUnroll.cpp
b/lib/Transforms/Scalar/LoopUnroll.cpp
index 90de9e946daa38bc13a24ef1ec6f48f8c753017a..3794b810360f3bd64d3e41fc49deaf7d3e69d5c8 100644
(file)
--- 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<unsigned>
- UnrollThreshold("unroll-threshold", cl::init(
25
0), cl::Hidden,
+ UnrollThreshold("unroll-threshold", cl::init(
10
0), cl::Hidden,
cl::desc("The cut-off point for loop unrolling"));
class LoopUnroll : public FunctionPass {