Make these variables static.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50196 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2008-04-23 23:15:23 +00:00
parent 9692db9c09
commit 3c02aca238
4 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -39,12 +39,12 @@ static std::string &getLibSupportInfoOutputFilename() {
}
namespace {
cl::opt<bool>
static cl::opt<bool>
TrackSpace("track-memory", cl::desc("Enable -time-passes memory "
"tracking (this may be slow)"),
cl::Hidden);
cl::opt<std::string, true>
static cl::opt<std::string, true>
InfoOutputFilename("info-output-file", cl::value_desc("filename"),
cl::desc("File to append -stats and -timer output to"),
cl::Hidden, cl::location(getLibSupportInfoOutputFilename()));