diff options
author | Erich Keane <erich.keane@intel.com> | 2022-11-21 06:30:47 -0800 |
---|---|---|
committer | Erich Keane <erich.keane@intel.com> | 2022-11-21 06:31:29 -0800 |
commit | eb4373abe829f8731b3e6d4da97ad88a9a93aa28 (patch) | |
tree | 1f7dd50d8b281b6b4fd27524edb2ce1e437526a4 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | ac1b999e855ed9ab5908842be6c1e4cbd246d3bc (diff) | |
download | llvm-eb4373abe829f8731b3e6d4da97ad88a9a93aa28.zip llvm-eb4373abe829f8731b3e6d4da97ad88a9a93aa28.tar.gz llvm-eb4373abe829f8731b3e6d4da97ad88a9a93aa28.tar.bz2 |
Remove -cc1 -fconcepts-ts flag
The -fconcepts-ts flag has been deprecated for 5 releases now, so just
remove it, concepts is supported in C++20 mode.
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index f09d5e1..a13da5a 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -491,9 +491,6 @@ static bool FixupInvocation(CompilerInvocation &Invocation, if (LangOpts.AppleKext && !LangOpts.CPlusPlus) Diags.Report(diag::warn_c_kext); - if (Args.hasArg(OPT_fconcepts_ts)) - Diags.Report(diag::warn_fe_concepts_ts_flag); - if (LangOpts.NewAlignOverride && !llvm::isPowerOf2_32(LangOpts.NewAlignOverride)) { Arg *A = Args.getLastArg(OPT_fnew_alignment_EQ); |