diff options
author | Dan Gohman <gohman@apple.com> | 2008-05-06 01:53:16 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-05-06 01:53:16 +0000 |
commit | 4a3f6c88820a204f80ca0fa3f1f2fe09ca10b02f (patch) | |
tree | 06573858cbbfb4ee974e18ae3bd53a600cdcb794 /lib/Target/TargetMachine.cpp | |
parent | 84b7df43fb098268f6ce37a3e32bcc2f455ecf96 (diff) |
Make several variable declarations static.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50696 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetMachine.cpp')
-rw-r--r-- | lib/Target/TargetMachine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp index b19066a98d..1065b095bc 100644 --- a/lib/Target/TargetMachine.cpp +++ b/lib/Target/TargetMachine.cpp @@ -138,13 +138,13 @@ namespace { cl::location(OptimizeForSize), cl::init(false)); - cl::opt<bool, true> + static cl::opt<bool, true> EnableRealignStack("realign-stack", cl::desc("Realign stack if needed"), cl::location(RealignStack), cl::init(true)); - cl::opt<unsigned, true> + static cl::opt<unsigned, true> OverrideStackAlignment("stack-alignment", cl::desc("Override default stack alignment"), cl::location(StackAlignment), |