================
@@ -5471,6 +5478,13 @@ void Driver::BuildJobs(Compilation &C) const {
A->getKind() == clang::driver::Action::BinaryTranslatorJobClass)
continue;
+ if (isa<PrecompileJobAction>(A) && !A->getInputs().empty()) {
+ const Action *FirstAction = A->getInputs().front();
+ if (FirstAction->getType() == types::TY_CXXStdModule ||
+ FirstAction->getType() == types::TY_PP_CXXStdModule)
+ continue;
+ }
----------------
ChuanqiXu9 wrote:
What are we doing here?
https://github.com/llvm/llvm-project/pull/199289
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits