summaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/LoopUnswitch.cpp
diff options
context:
space:
mode:
authorStepan Dyatkovskiy <stpworld@narod.ru>2012-01-16 20:48:04 +0000
committerStepan Dyatkovskiy <stpworld@narod.ru>2012-01-16 20:48:04 +0000
commit27bf56056bed53d55d7ef0fd67d1851fa860b4f2 (patch)
tree3051836d5bd4999e91063b92cf89ca42c5635021 /lib/Transforms/Scalar/LoopUnswitch.cpp
parent63c66724235ace1860e60a11ce2756d577387b29 (diff)
downloadexternal_llvm-27bf56056bed53d55d7ef0fd67d1851fa860b4f2.zip
external_llvm-27bf56056bed53d55d7ef0fd67d1851fa860b4f2.tar.gz
external_llvm-27bf56056bed53d55d7ef0fd67d1851fa860b4f2.tar.bz2
Fixed comment in loop-unswitch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148252 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopUnswitch.cpp')
-rw-r--r--lib/Transforms/Scalar/LoopUnswitch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopUnswitch.cpp b/lib/Transforms/Scalar/LoopUnswitch.cpp
index 5b918cc..678652d 100644
--- a/lib/Transforms/Scalar/LoopUnswitch.cpp
+++ b/lib/Transforms/Scalar/LoopUnswitch.cpp
@@ -59,7 +59,7 @@ STATISTIC(NumTrivial , "Number of unswitches that are trivial");
STATISTIC(NumSimplify, "Number of simplifications of unswitched code");
STATISTIC(TotalInsts, "Total number of instructions analyzed");
-// The specific value of 50 here was chosen based only on intuition and a
+// The specific value of 100 here was chosen based only on intuition and a
// few specific examples.
static cl::opt<unsigned>
Threshold("loop-unswitch-threshold", cl::desc("Max loop size to unswitch"),