From 68e15559b8c331a74f7b5a2a9b69b7b1d0d5bd48 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Fri, 26 Feb 2016 16:49:54 +0000 Subject: [PATCH] Fix broken buildbots. llvm-svn: 262034 --- lld/ELF/Writer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp index 343f3fc..661324b 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()) -- 2.7.4