diff --git a/llvm/lib/ObjectYAML/XCOFFEmitter.cpp b/llvm/lib/ObjectYAML/XCOFFEmitter.cpp --- a/llvm/lib/ObjectYAML/XCOFFEmitter.cpp +++ b/llvm/lib/ObjectYAML/XCOFFEmitter.cpp @@ -387,8 +387,17 @@ } W.write(YamlSym.Value); } - W.write( - YamlSym.SectionName.size() ? SectionIndexMap[YamlSym.SectionName] : 0); + if (YamlSym.SectionName.size()) { + StringRef SymSecName = + StringRef(YamlSym.SectionName.data(), YamlSym.SectionName.size()); + // If the section name specified in the symbol is not a valid member of + // SectionIndexMap, write an invalid index. + W.write(SectionIndexMap.find(SymSecName) == SectionIndexMap.end() + ? -3 + : SectionIndexMap[YamlSym.SectionName]); + } else { + W.write(0); + } W.write(YamlSym.Type); W.write(YamlSym.StorageClass); W.write(YamlSym.NumberOfAuxEntries);