[lld] r198016 - Add a newline to an error message.

Rui Ueyama ruiu at google.com
Wed Dec 25 05:48:26 PST 2013


Author: ruiu
Date: Wed Dec 25 07:48:26 2013
New Revision: 198016

URL: http://llvm.org/viewvc/llvm-project?rev=198016&view=rev
Log:
Add a newline to an error message.

Modified:
    lld/trunk/lib/ReaderWriter/PECOFF/PECOFFLinkingContext.cpp

Modified: lld/trunk/lib/ReaderWriter/PECOFF/PECOFFLinkingContext.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/ReaderWriter/PECOFF/PECOFFLinkingContext.cpp?rev=198016&r1=198015&r2=198016&view=diff
==============================================================================
--- lld/trunk/lib/ReaderWriter/PECOFF/PECOFFLinkingContext.cpp (original)
+++ lld/trunk/lib/ReaderWriter/PECOFF/PECOFFLinkingContext.cpp Wed Dec 25 07:48:26 2013
@@ -260,7 +260,7 @@ uint32_t PECOFFLinkingContext::getSectio
 void PECOFFLinkingContext::addDllExport(ExportDesc &desc) {
   if (_dllExportSet.count(desc.name)) {
     llvm::errs() << "Export symbol '" << desc.name
-                 << "' specified more than once.";
+                 << "' specified more than once.\n";
     return;
   }
   _dllExports.push_back(desc);





More information about the llvm-commits mailing list