diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp index 343f3fcd4a77..661324bd1ce2 100644 --- a/lld/ELF/Writer.cpp +++ b/lld/ELF/Writer.cpp @@ -920,7 +920,7 @@ template void Writer::addReservedSymbols() { // The name without the underscore is not a reserved name, // so it is defined only when there is a reference against it. - assert(Name.startswith("_")); + assert(S.startswith("_")); S = S.substr(1); if (SymbolBody *B = Symtab.find(S)) if (B->isUndefined())