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/Utils/BasicInliner.cpp b/lib/Transforms/Utils/BasicInliner.cpp index 59deef5..a3f294d 100644 --- a/lib/Transforms/Utils/BasicInliner.cpp +++ b/lib/Transforms/Utils/BasicInliner.cpp
@@ -27,7 +27,7 @@ using namespace llvm; namespace { - cl::opt<unsigned> + static cl::opt<unsigned> BasicInlineThreshold("inline-threshold", cl::Hidden, cl::init(200), cl::desc("Control the amount of basic inlining to perform (default = 200)")); }