[ELF] - Consistent spelling for error/warning messages

Previously error and warnings were not consistent in lld.
Some of them started from lowercase letter, others from
uppercase. Also there was one or two which had a dot at the end.
This patch changes all messages to start from uppercase letter if
they were not before.

Differential revision: http://reviews.llvm.org/D18045

llvm-svn: 263125
This commit is contained in:
George Rimar
2016-03-10 16:58:34 +00:00
parent 278a5b31a5
commit e094388861
20 changed files with 59 additions and 59 deletions

View File

@@ -302,7 +302,7 @@ SymbolBody *elf::ObjectFile<ELFT>::createSymbolBody(const Elf_Sym *Sym) {
switch (Sym->getBinding()) {
default:
fatal("unexpected binding");
fatal("Unexpected binding");
case STB_GLOBAL:
case STB_WEAK:
case STB_GNU_UNIQUE: {