Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Serialization/Serialization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3715,7 +3715,7 @@ void Serializer::writeToStream(raw_ostream &os, ModuleOrSourceFile DC,
BCBlockRAII moduleBlock(S.Out, MODULE_BLOCK_ID, 2);
S.writeHeader(options);
S.writeInputBlock(options);
S.writeSIL(SILMod, options.SerializeAllSIL);
S.writeSIL(SILMod);
S.writeAST(DC);
}

Expand Down
2 changes: 1 addition & 1 deletion lib/Serialization/Serialization.h
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ class Serializer {
const std::vector<BitOffset> &values);

/// Serializes all transparent SIL functions in the SILModule.
void writeSIL(const SILModule *M, bool serializeAllSIL);
void writeSIL(const SILModule *M);

/// Top-level entry point for serializing a module.
void writeAST(ModuleOrSourceFile DC);
Expand Down