diff options
author | Chris Lattner <sabre@nondot.org> | 2003-07-31 19:31:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-07-31 19:31:21 +0000 |
commit | eaee32593281d404806ea529abc27ccaa012954b (patch) | |
tree | b7d838edbfcaff93005664cb53c898b28b4d7913 /llvm/lib/Support/Timer.cpp | |
parent | a0e679e29945e1815eac25532aaa40dce5a4ad2a (diff) | |
download | llvm-eaee32593281d404806ea529abc27ccaa012954b.zip llvm-eaee32593281d404806ea529abc27ccaa012954b.tar.gz llvm-eaee32593281d404806ea529abc27ccaa012954b.tar.bz2 |
Trivial cleanups: no need to include header twice. Global variable is local to file
llvm-svn: 7456
Diffstat (limited to 'llvm/lib/Support/Timer.cpp')
-rw-r--r-- | llvm/lib/Support/Timer.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Support/Timer.cpp b/llvm/lib/Support/Timer.cpp index 79d4c1c..e4c085d 100644 --- a/llvm/lib/Support/Timer.cpp +++ b/llvm/lib/Support/Timer.cpp @@ -4,8 +4,6 @@ // //===----------------------------------------------------------------------===// -#include "Config/malloc.h" - #include "Support/Timer.h" #include "Support/CommandLine.h" @@ -19,7 +17,7 @@ #include <functional> #include <fstream> -std::string LibSupportInfoOutputFilename; +static std::string LibSupportInfoOutputFilename; namespace { #ifdef HAVE_MALLINFO |