[Serialization] Fix serializing CompilerPluginExecutablePaths values

rdar://110068048
This commit is contained in:
Alexis Laferrière
2023-06-02 13:20:54 -07:00
parent 814ca434f0
commit 7abb4c38e2
3 changed files with 3 additions and 3 deletions

View File

@@ -1150,7 +1150,7 @@ void Serializer::writeHeader(const SerializationOptions &options) {
options_block::CompilerPluginExecutablePathLayout
CompilerPluginExecutablePath(Out);
for (auto Arg : options.CompilerPluginLibraryPaths) {
for (auto Arg : options.CompilerPluginExecutablePaths) {
CompilerPluginExecutablePath.emit(ScratchRecord, Arg);
}
}