Revert "[NFC; Incremental] Rename BasicSourceFileInfo.InterfaceHash"

This commit is contained in:
David Ungar
2021-02-25 09:06:53 -08:00
committed by GitHub
parent 88c73c63d8
commit 6e034cac4e
6 changed files with 9 additions and 11 deletions

View File

@@ -2518,7 +2518,7 @@ static void printModuleMetadata(ModuleDecl *MD) {
});
MD->collectBasicSourceFileInfo([&](const BasicSourceFileInfo &info) {
OS << "filepath=" << info.FilePath << "; ";
OS << "hash=" << info.InterfaceHashIncludingTypeMembers.getRawValue() << "; ";
OS << "hash=" << info.InterfaceHash.getRawValue() << "; ";
OS << "mtime=" << info.LastModified << "; ";
OS << "size=" << info.FileSize;
OS << "\n";