Merge pull request #87662 from xymus/internal-bridging-header-and-swiftinterface

ModuleInterface: Don't print imports for any bridging header
This commit is contained in:
Alexis Laferrière
2026-03-06 16:13:06 -08:00
committed by GitHub
2 changed files with 5 additions and 1 deletions
+2 -1
View File
@@ -330,7 +330,8 @@ static void printImports(raw_ostream &out,
for (auto import : allImports) {
auto importedModule = import.importedModule;
if (importedModule->isOnoneSupportModule()) {
if (importedModule->isOnoneSupportModule() ||
importedModule->isClangHeaderImportModule()) {
continue;
}