[PATCH] D128981: [C++20][Modules] Implement include translation.
Chuanqi Xu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sun Jul 3 19:40:43 PDT 2022
ChuanqiXu added a subscriber: rsmith.
ChuanqiXu added inline comments.
================
Comment at: clang/include/clang/Lex/Preprocessor.h:434
+ /// Saw a 'module' identifier.
+ void handleModule(bool ATLTS) {
+ // This was the first module identifier and not preceded by any token
----------------
What's the meaning of `ATLTS`?
================
Comment at: clang/lib/Lex/PPDirectives.cpp:2226-2227
+
+ // FIXME: We do not have a good way to disambiguate C++ clang modules from
+ // C++ standard modules (other than use/non-use of Header Units).
+ Module *SM = SuggestedModule.getModule();
----------------
>From what @rsmith said in https://reviews.llvm.org/D113391, it looks like the ideal direction is to use C++ clang modules and C++ standard modules together. So it looks like we couldn't disambiguate them from command line options.
================
Comment at: clang/test/Modules/cxx20-include-translation.cpp:10
+// RUN: %clang_cc1 -std=c++20 -xc++-user-header h4.h -emit-header-unit -o h4.pcm
+
+// RUN: %clang_cc1 -std=c++20 Xlate.cpp -emit-module-interface -o Xlate.pcm \
----------------
Maybe we need an example `h5.h` which is not pre-compiled as a header unit and it would be handled correctly.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128981/new/
https://reviews.llvm.org/D128981
More information about the cfe-commits
mailing list