We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b933fe commit bac3570Copy full SHA for bac3570
lld/ELF/MarkLive.cpp
@@ -78,7 +78,7 @@ static void resolveReloc(InputSectionBase &Sec, RelT &Rel,
78
typename ELFT::uint Offset = D->Value;
79
if (D->isSection())
80
Offset += getAddend<ELFT>(Sec, Rel);
81
- Fn({cast<InputSectionBase>(D->Section)->Repl, Offset});
+ Fn({cast<InputSectionBase>(D->Section), Offset});
82
} else if (auto *U = dyn_cast<Undefined>(&B)) {
83
for (InputSectionBase *Sec : CNamedSections.lookup(U->getName()))
84
Fn({Sec, 0});
0 commit comments