diff options
author | Balazs Benics <benicsbalazs@gmail.com> | 2022-08-23 18:39:21 +0200 |
---|---|---|
committer | Balazs Benics <benicsbalazs@gmail.com> | 2022-08-23 18:39:21 +0200 |
commit | 6ca17b58f569d43838404f5c94856e3584a23d0f (patch) | |
tree | 5fd96999888fb855781e1ff5690050c14e6b4ac6 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 16cb3be62600621361644ebd15d071c711d6aa86 (diff) | |
download | llvm-6ca17b58f569d43838404f5c94856e3584a23d0f.zip llvm-6ca17b58f569d43838404f5c94856e3584a23d0f.tar.gz llvm-6ca17b58f569d43838404f5c94856e3584a23d0f.tar.bz2 |
[analyzer] Drop deprecated flags
As proposed in D126215 (ffe7950ebc62380c3afc7c71f454a1db3f6f5c76),
I'm dropping the `-analyzer-store` and
`-analyzer-opt-analyze-nested-blocks` clang frontend flags.
I'm also dropping the corresponding commandline handlers of `scanbuild`.
This behavior is planned to be part of `clang-16`.
Reviewed By: xazax.hun
Differential Revision: https://reviews.llvm.org/D132289
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 7e6d0cd..6b5baa7 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -907,14 +907,6 @@ static bool ParseAnalyzerArgs(AnalyzerOptions &Opts, ArgList &Args, #include "clang/Driver/Options.inc" #undef ANALYZER_OPTION_WITH_MARSHALLING - if (Args.hasArg(OPT_analyzer_store)) - Diags.Report(diag::warn_analyzer_deprecated_option) << "-analyzer-store" - << "clang-16"; - if (Args.hasArg(OPT_analyzer_opt_analyze_nested_blocks)) - Diags.Report(diag::warn_analyzer_deprecated_option) - << "-analyzer-opt-analyze-nested-blocks" - << "clang-16"; - if (Arg *A = Args.getLastArg(OPT_analyzer_constraints)) { StringRef Name = A->getValue(); AnalysisConstraints Value = llvm::StringSwitch<AnalysisConstraints>(Name) |