diff options
author | Rui Ueyama <ruiu@google.com> | 2016-03-13 23:07:42 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-03-13 23:07:42 +0000 |
commit | 5bc2acd0526ab446fe1c4fc0c8d22dde5fd57f67 (patch) | |
tree | 0b2aa894a57d10c18b962baed0094a4f747e03a6 | |
parent | 627fa8e424f8657cd0cc9b34100ea5c4337dd81c (diff) | |
download | bcm5719-llvm-5bc2acd0526ab446fe1c4fc0c8d22dde5fd57f67.tar.gz bcm5719-llvm-5bc2acd0526ab446fe1c4fc0c8d22dde5fd57f67.zip |
Print out newline in both cases.
llvm-svn: 263401
-rw-r--r-- | lld/ELF/DriverUtils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lld/ELF/DriverUtils.cpp b/lld/ELF/DriverUtils.cpp index a662b3cfca5..851166eb4a2 100644 --- a/lld/ELF/DriverUtils.cpp +++ b/lld/ELF/DriverUtils.cpp @@ -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) { |