Remove redundant newline.
authorRui Ueyama <ruiu@google.com>
Wed, 12 Jul 2017 01:43:01 +0000 (01:43 +0000)
committerRui Ueyama <ruiu@google.com>
Wed, 12 Jul 2017 01:43:01 +0000 (01:43 +0000)
llvm-svn: 307750

lld/ELF/InputSection.cpp

index 6587a1b..c6a539b 100644 (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;
 }