commit | 4a3f6c88820a204f80ca0fa3f1f2fe09ca10b02f | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Tue May 06 01:53:16 2008 +0000 |
committer | Dan Gohman <gohman@apple.com> | Tue May 06 01:53:16 2008 +0000 |
tree | 06573858cbbfb4ee974e18ae3bd53a600cdcb794 | |
parent | 84b7df43fb098268f6ce37a3e32bcc2f455ecf96 [diff] [blame] |
Make several variable declarations static. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50696 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/LoopUnswitch.cpp b/lib/Transforms/Scalar/LoopUnswitch.cpp index 4775123..5af0a57 100644 --- a/lib/Transforms/Scalar/LoopUnswitch.cpp +++ b/lib/Transforms/Scalar/LoopUnswitch.cpp
@@ -55,7 +55,7 @@ STATISTIC(NumSimplify, "Number of simplifications of unswitched code"); namespace { - cl::opt<unsigned> + static cl::opt<unsigned> Threshold("loop-unswitch-threshold", cl::desc("Max loop size to unswitch"), cl::init(10), cl::Hidden);