diff --git a/lld/ELF/SyntheticSections.cpp b/lld/ELF/SyntheticSections.cpp index 7bc7a655ec92..a0b2d540cb82 100644 --- a/lld/ELF/SyntheticSections.cpp +++ b/lld/ELF/SyntheticSections.cpp @@ -2494,7 +2494,7 @@ void GdbIndexSection::writeTo(uint8_t *Buf) { // Write the string pool. for (GdbSymbol &Sym : Symbols) - memcpy(Buf + Sym.OutputOff, Sym.Name.val().data(), Sym.Name.size()); + memcpy(Buf + Sym.OutputOff, Sym.Name.data(), Sym.Name.size()); } bool GdbIndexSection::empty() const { return !Out::DebugInfo; }