Print out newline in both cases.

llvm-svn: 263401
This commit is contained in:
Rui Ueyama
2016-03-13 23:07:42 +00:00
parent 627fa8e424
commit 5bc2acd052

View File

@@ -88,7 +88,8 @@ void elf::printVersion() {
outs() << "LLD " << getLLDVersion();
std::string S = getLLDRepositoryVersion();
if (!S.empty())
outs() << " " << S << "\n";
outs() << " " << S;
outs() << "\n";
}
std::string elf::findFromSearchPaths(StringRef Path) {