<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/146658>146658</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
[lld] crash linking OSS https://github.com/Ranchero-Software/NetNewsWire
</td>
</tr>
<tr>
<th>Labels</th>
<td>
lld
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
johnno1962
</td>
</tr>
</table>
<pre>
Hi,
I'm seeing a crash linking this Open Source project https://github.com/Ranchero-Software/NetNewsWire during linking. The crash occurs here in `lld/MachO/SyntheticSections.cpp` building of main. `*reloc` is returned nil inside the loop. I'm working with the source at the moment, if you have any suggestions I could try or information I can gather let me know as I'd like to see if I can fix this.
```
void ObjCMethListSection::setUp() {
for (const ConcatInputSection *isec : inputs) {
uint32_t structSizeAndFlags = 0, structCount = 0;
readMethodListHeader(isec->data.data(), structSizeAndFlags, structCount);
uint32_t originalStructSize = structSizeAndFlags & structSizeMask;
// Method name is immediately after header
uint32_t methodNameOff = methodListHeaderSize;
// Loop through all methods, and ensure a selref for each of them exists.
while (methodNameOff < isec->data.size()) {
const Reloc *reloc = isec->getRelocAt(methodNameOff);
assert(reloc && "Relocation expected at method list name slot");
StringRef methname = reloc->getReferentString();
if (!ObjCSelRefsHelper::getSelRef(methname))
ObjCSelRefsHelper::makeSelRef(methname);
// Jump to method name offset in next struct
methodNameOff += originalStructSize;
}
}
}
```
</pre>
<img width="1" height="1" alt="" src="http://email.email.llvm.org/o/eJykVU1v4zYQ_TX0ZRBDpvx58MHr1NgtNgkQt-ixoMiRyIQiBXIUx_31BSnF67jbXhoEkkXOe_PmixQxmsYhbtniC1vcT0RP2ofti9fO-dlmySeVV-ftV8P4nhU7Vuy-Mb5qISIa14AAGUTUYI17Td-kTYSnDh0cfR8kQhf8C0oCTdRFVu4YPzB-aAzpvppK3zJ-eBZOagz-7uhrOomAjB8ekR7xFP8wAUH1IVGPLqbwm8bRq5eyDxE0BgTjgC0LaxXjhwch9RPjh-PZkUYy8oiSjHdxKruOLQuoemNVIvU1tMK4acIyvgtovUwGJkJA6oNDBc5YMC4ahUAawXrfTWHIwsmHHPbJkM6bcYhaUP5qfYuOGN-DqeHse9DiDUG4M8S-aTBmTfANpO-tAgpn8AGMq31oRdpLW8JBI0hjAIsELcKr8ycQMStQYM0rAvlUj-RkANTmPVdimiq2LMb_YvfmjYKn6mX_gKS_m0hjXlJdyl1E-r1jfM34BtjqCyt2ALUPwPhaehcJ9t5JQd9c138AgfGdiSiBlTswaSNeowF646jkfxJECr2ko_kLd04drGgisPIeipScYW_ve0fjYpnxAYVKSr1KWr-iUBgYXyeHd6z8RQkS0_QYNP9guvZyw5_sBvKLMh9MY5ywxws2i_iZYL68Wn4Q8XXkAoChr2GQC060mHrItC0qIwjtGURNGEAPUdxkp82wR9HiU11n9-1N3Mnj4O2zw-_ed0A6-L7RIKwdgTlu4RSgi31AEBDRBqxzQVFInTqfNLaA7yZS7pTEetLGYqr4raI9fEp7THLGtF_qPXTJc5oh-BimHMwHtEHKuzu69fCjLvlPxIghGY0cfJlyzzjP8GE28L1DSajSsA1cYE2kIffRemKcX2gvzEdKh8kz1hmTbZPC7OciscaAjgbTMcorcaaGvDhLk3RE-4x1_Iq2wzDMUYM0rI5BJidDohLFv4Ba8Yo_RX2WP1b9177t0tS3V-3m6zoipXPQ4fvHwF2AN_XkX1LU_2z9q4Ze3adfw2t8fhwlE7Ut1abciAluZ6vFbD5fb2bFRG8rWXBcVVjP1bqqi4Us5ktRzSSWHJWYVROz5QVfFKuCF5tyMSumqliu1VwsFS_LBd-UbF5gK4ydWvvWTn1oJibGHrez-XK5WE-sqNDGfFlxng97nm6tsE3md1XfRDYvbO7oCwEZsvl-S_aL-5sb6-l4_B-X06QPdvsf8CRifN2NVyHjhxxSZPwwRvW25X8HAAD__6f0bK4">