diff options
author | Artem Dergachev <artem.dergachev@gmail.com> | 2020-11-17 18:59:01 -0800 |
---|---|---|
committer | Artem Dergachev <artem.dergachev@gmail.com> | 2020-11-17 18:59:21 -0800 |
commit | 6a89cb8136f3435bd977b419b683dc0acc98e61e (patch) | |
tree | af4d058284a4c5d775c1e1876e167fbb2699babd /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 39f1eeb07df619d627d9c4792311108696fb9d00 (diff) | |
download | llvm-6a89cb8136f3435bd977b419b683dc0acc98e61e.zip llvm-6a89cb8136f3435bd977b419b683dc0acc98e61e.tar.gz llvm-6a89cb8136f3435bd977b419b683dc0acc98e61e.tar.bz2 |
Revert "Revert "Revert "[analyzer] NFC: Move path diagnostic consumer implementations to libAnalysis."""
This reverts commit 41bcc05e2a4e3062eb12ac6e071bc835decc38f5.
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index b8d4ca8..a9bc48f 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -373,7 +373,7 @@ static bool ParseAnalyzerArgs(AnalyzerOptions &Opts, ArgList &Args, AnalysisDiagClients Value = llvm::StringSwitch<AnalysisDiagClients>(Name) #define ANALYSIS_DIAGNOSTICS(NAME, CMDFLAG, DESC, CREATFN) \ .Case(CMDFLAG, PD_##NAME) -#include "clang/Analysis/PathDiagnosticConsumers.def" +#include "clang/StaticAnalyzer/Core/Analyses.def" .Default(NUM_ANALYSIS_DIAG_CLIENTS); if (Value == NUM_ANALYSIS_DIAG_CLIENTS) { Diags.Report(diag::err_drv_invalid_value) |