Rename stats to print-stats to avoid conflicting with llvm's
stats statistic when clang is built as a dylib.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45441 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Driver/clang.cpp b/Driver/clang.cpp
index fa1be49..6e1683c 100644
--- a/Driver/clang.cpp
+++ b/Driver/clang.cpp
@@ -50,7 +50,8 @@
static llvm::cl::opt<bool>
Verbose("v", llvm::cl::desc("Enable verbose output"));
static llvm::cl::opt<bool>
-Stats("stats", llvm::cl::desc("Print performance metrics and statistics"));
+Stats("print-stats",
+ llvm::cl::desc("Print performance metrics and statistics"));
enum ProgActions {
RewriteTest, // Rewriter testing stuff.