diff options
| -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) { |

