summaryrefslogtreecommitdiffstats
path: root/lld/ELF/InputFiles.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lld/ELF/InputFiles.cpp')
-rw-r--r--lld/ELF/InputFiles.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp
index d94b48c2ec5..8e07ffdc05a 100644
--- a/lld/ELF/InputFiles.cpp
+++ b/lld/ELF/InputFiles.cpp
@@ -340,7 +340,7 @@ SymbolBody *elf::ObjectFile<ELFT>::createSymbolBody(const Elf_Sym *Sym) {
}
void ArchiveFile::parse() {
- File = check(Archive::create(MB), "Failed to parse archive");
+ File = check(Archive::create(MB), "failed to parse archive");
// Allocate a buffer for Lazy objects.
size_t NumSyms = File->getNumberOfSymbols();
@@ -355,13 +355,13 @@ void ArchiveFile::parse() {
MemoryBufferRef ArchiveFile::getMember(const Archive::Symbol *Sym) {
Archive::Child C =
check(Sym->getMember(),
- "Could not get the member for symbol " + Sym->getName());
+ "could not get the member for symbol " + Sym->getName());
if (!Seen.insert(C.getChildOffset()).second)
return MemoryBufferRef();
return check(C.getMemoryBufferRef(),
- "Could not get the buffer for the member defining symbol " +
+ "could not get the buffer for the member defining symbol " +
Sym->getName());
}
OpenPOWER on IntegriCloud