mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[Serialization] Only diagnose a bad architecture when there are others (#20550)
This diagnostic needs to be adapted for swiftinterfaces too, but
meanwhile let's not have it get in the way when dealing with a
multi-architecture module that has parseable interfaces.
MyKit.framework/
Modules/
MyKit.swiftmodule/
x86_64.swiftinterface
x86_64.swiftdoc
# no x86_64.swiftmodule
This commit is contained in:
@@ -117,6 +117,13 @@ static void addDiagnosticInfoForArchitectureMismatch(ASTContext &ctx,
|
||||
}
|
||||
}
|
||||
|
||||
if (foundArchs.empty()) {
|
||||
// Maybe this swiftmodule directory only contains swiftinterfaces, or
|
||||
// maybe something else is going on. Regardless, we shouldn't emit a
|
||||
// possibly incorrect diagnostic.
|
||||
return;
|
||||
}
|
||||
|
||||
ctx.Diags.diagnose(sourceLocation, diag::sema_no_import_arch, moduleName,
|
||||
archName, foundArchs);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user