Merge pull request #77216 from xedin/add-swift-compiler-version

[Frontend/AST] Add `-interface-compiler-version` option to frontend/modules
This commit is contained in:
Pavel Yaskevich
2024-10-28 21:06:47 -07:00
committed by GitHub
20 changed files with 151 additions and 8 deletions

View File

@@ -1408,3 +1408,7 @@ StringRef SerializedASTFile::getExportedModuleName() const {
StringRef SerializedASTFile::getPublicModuleName() const {
return File.getPublicModuleName();
}
llvm::VersionTuple SerializedASTFile::getSwiftInterfaceCompilerVersion() const {
return File.getSwiftInterfaceCompilerVersion();
}