From bee192f6b08f3254773fb8a9f2064043db87fa33 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Tue, 10 Jul 2018 15:15:56 +0000 Subject: [PATCH] Simplify. NFC. llvm-svn: 336686 --- lld/ELF/SyntheticSections.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }