aboutsummaryrefslogtreecommitdiff
path: root/Driver/clang.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-01-23 20:06:20 +0000
committerTed Kremenek <kremenek@apple.com>2009-01-23 20:06:20 +0000
commitc472d79e3aa3a81825f0e0c358dfd0317d6060ed (patch)
treecc06c663c65620e9611dd132a95f7ee967f56c20 /Driver/clang.cpp
parentd013f4a9945964db3b67eb1d64528a7fe9966f7a (diff)
When using -analyzer-output-plist always output a plist file even if it contains no error reports.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62871 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/clang.cpp')
-rw-r--r--Driver/clang.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Driver/clang.cpp b/Driver/clang.cpp
index cf58f34e7c..cc3788b5f3 100644
--- a/Driver/clang.cpp
+++ b/Driver/clang.cpp
@@ -239,7 +239,7 @@ static llvm::cl::opt<AnalysisDiagClients>
AnalysisDiagOpt(llvm::cl::desc("SCA Output Options:"),
llvm::cl::init(PD_HTML),
llvm::cl::values(
-#define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATFN)\
+#define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATFN, AUTOCREATE)\
clEnumValN(PD_##NAME, "analyzer-output-" CMDFLAG, DESC),
#include "Analyses.def"
clEnumValEnd));