Print out newline in both cases.

llvm-svn: 263401
diff --git a/lld/ELF/DriverUtils.cpp b/lld/ELF/DriverUtils.cpp
index a662b3c..851166e 100644
--- a/lld/ELF/DriverUtils.cpp
+++ b/lld/ELF/DriverUtils.cpp
@@ -88,7 +88,8 @@
   outs() << "LLD " << getLLDVersion();
   std::string S = getLLDRepositoryVersion();
   if (!S.empty())
-    outs() << " " << S << "\n";
+    outs() << " " << S;
+  outs() << "\n";
 }
 
 std::string elf::findFromSearchPaths(StringRef Path) {