diff options
author | Chuanqi Xu <yedeng.yd@linux.alibaba.com> | 2023-02-15 18:30:49 +0800 |
---|---|---|
committer | Chuanqi Xu <yedeng.yd@linux.alibaba.com> | 2023-02-16 14:40:32 +0800 |
commit | 612f3ac26f8cdb7487408b5541b224876564e57c (patch) | |
tree | f8db21882cbb9fec83e9916ade7364c07823acb9 /clang/lib/Basic/IdentifierTable.cpp | |
parent | 96df79af029b85616ab90e73143e0e8ae89c7b46 (diff) | |
download | llvm-612f3ac26f8cdb7487408b5541b224876564e57c.zip llvm-612f3ac26f8cdb7487408b5541b224876564e57c.tar.gz llvm-612f3ac26f8cdb7487408b5541b224876564e57c.tar.bz2 |
[Modules] Remove -fmodules-ts
As the diagnostic message shows, we should remove -fmodules-ts flag in
clang/llvm17. Since clang/llvm16 is already branched. We can remove the
depreacared flag now.
Diffstat (limited to 'clang/lib/Basic/IdentifierTable.cpp')
-rw-r--r-- | clang/lib/Basic/IdentifierTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Basic/IdentifierTable.cpp b/clang/lib/Basic/IdentifierTable.cpp index 63b08d8..97dc5cd 100644 --- a/clang/lib/Basic/IdentifierTable.cpp +++ b/clang/lib/Basic/IdentifierTable.cpp @@ -191,7 +191,7 @@ static KeywordStatus getKeywordStatusHelper(const LangOptions &LangOpts, case KEYCOROUTINES: return LangOpts.Coroutines ? KS_Enabled : KS_Unknown; case KEYMODULES: - return LangOpts.ModulesTS ? KS_Enabled : KS_Unknown; + return KS_Unknown; case KEYOPENCLCXX: return LangOpts.OpenCLCPlusPlus ? KS_Enabled : KS_Unknown; case KEYMSCOMPAT: |