Remove redundant newline.

llvm-svn: 307750
This commit is contained in:
Rui Ueyama 2017-07-12 01:43:01 +00:00
parent e3e7c0fb37
commit 106179a257
1 changed files with 1 additions and 1 deletions

View File

@ -468,7 +468,7 @@ static uint64_t getAArch64UndefinedRelativeWeakVA(uint64_t Type, uint64_t A,
static uint64_t getARMStaticBase(const SymbolBody &Body) {
OutputSection *OS = Body.getOutputSection();
if (!OS || !OS->FirstInPtLoad)
fatal("SBREL relocation to " + Body.getName() + " without static base\n");
fatal("SBREL relocation to " + Body.getName() + " without static base");
return OS->FirstInPtLoad->Addr;
}