mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Merge remote-tracking branch 'origin/master' into master-next
This commit is contained in:
@@ -288,7 +288,7 @@ namespace {
|
||||
explicit PrettyModuleFileDeserialization(const ModuleFile &file)
|
||||
: File(file) {}
|
||||
|
||||
virtual void print(raw_ostream &os) const override {
|
||||
void print(raw_ostream &os) const override {
|
||||
os << "While reading from " << File.getModuleFilename() << "\n";
|
||||
}
|
||||
};
|
||||
@@ -535,6 +535,10 @@ bool ModuleFile::readIndexBlock(llvm::BitstreamCursor &cursor) {
|
||||
assert(blobData.empty());
|
||||
LocalDeclContexts.assign(scratch.begin(), scratch.end());
|
||||
break;
|
||||
case index_block::GENERIC_ENVIRONMENT_OFFSETS:
|
||||
assert(blobData.empty());
|
||||
GenericEnvironments.assign(scratch.begin(), scratch.end());
|
||||
break;
|
||||
case index_block::NORMAL_CONFORMANCE_OFFSETS:
|
||||
assert(blobData.empty());
|
||||
NormalConformances.assign(scratch.begin(), scratch.end());
|
||||
|
||||
Reference in New Issue
Block a user