| commit | 5bc2acd0526ab446fe1c4fc0c8d22dde5fd57f67 | [log] [tgz] |
|---|---|---|
| author | Rui Ueyama <ruiu@google.com> | Sun Mar 13 23:07:42 2016 +0000 |
| committer | Rui Ueyama <ruiu@google.com> | Sun Mar 13 23:07:42 2016 +0000 |
| tree | 0b2aa894a57d10c18b962baed0094a4f747e03a6 | |
| parent | 627fa8e424f8657cd0cc9b34100ea5c4337dd81c [diff] [blame] |
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) {