diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-22 17:06:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-22 17:06:20 +0000 |
commit | 5184bdc596146ee05deae3f81d4a93638e7763f6 (patch) | |
tree | 0351060374adcb3a8a54d6475063a627a93e689f /llvm/lib/Support/Statistic.cpp | |
parent | 8f7b500fffcd235a7a9b2a5b05837104f156bd9f (diff) | |
download | bcm5719-llvm-5184bdc596146ee05deae3f81d4a93638e7763f6.tar.gz bcm5719-llvm-5184bdc596146ee05deae3f81d4a93638e7763f6.zip |
Implement a new command line option, -debug, which is meant to unify all of
the random debugging macros scattered throughout llvm.
The new DEBUG(x) macro should be used instead of special purpose debug macros.
llvm-svn: 2709
Diffstat (limited to 'llvm/lib/Support/Statistic.cpp')
-rw-r--r-- | llvm/lib/Support/Statistic.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Support/Statistic.cpp b/llvm/lib/Support/Statistic.cpp index 79b19503b72..249955beeb8 100644 --- a/llvm/lib/Support/Statistic.cpp +++ b/llvm/lib/Support/Statistic.cpp @@ -18,7 +18,10 @@ #include "Support/CommandLine.h" #include <iostream> +bool DebugFlag; // DebugFlag - Exported boolean set by the -debug option + static cl::Flag Enabled("stats", "Enable statistics output from program"); +static cl::Flag Debug(DebugFlag, "debug", "Enable debug output", cl::Hidden); // Print information when destroyed, iff command line option is specified void StatisticBase::destroy() const { |