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 | 6a2da37c0e867e1adf80a592c152a6246f63ee5b (patch) | |
tree | 4a1798a684cdbcae48d13065f3612a518dd7fb91 /llvm/lib/Analysis/AliasAnalysisCounter.cpp | |
parent | a8b7e78f542cd9ba3a992d0d3687d108a8a4ffa9 (diff) | |
download | bcm5719-llvm-6a2da37c0e867e1adf80a592c152a6246f63ee5b.tar.gz bcm5719-llvm-6a2da37c0e867e1adf80a592c152a6246f63ee5b.zip |
Make several variable declarations static.
llvm-svn: 50696
Diffstat (limited to 'llvm/lib/Analysis/AliasAnalysisCounter.cpp')
-rw-r--r-- | llvm/lib/Analysis/AliasAnalysisCounter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/AliasAnalysisCounter.cpp b/llvm/lib/Analysis/AliasAnalysisCounter.cpp index 99b17661b25..9c42902a04c 100644 --- a/llvm/lib/Analysis/AliasAnalysisCounter.cpp +++ b/llvm/lib/Analysis/AliasAnalysisCounter.cpp @@ -22,9 +22,9 @@ using namespace llvm; namespace { - cl::opt<bool> + static cl::opt<bool> PrintAll("count-aa-print-all-queries", cl::ReallyHidden); - cl::opt<bool> + static cl::opt<bool> PrintAllFailures("count-aa-print-all-failed-queries", cl::ReallyHidden); class VISIBILITY_HIDDEN AliasAnalysisCounter |