[Driver] Fix newline at the end of help output

Print a regular newline at the end of the help output. The current
string literal seems to throw off shells.
This commit is contained in:
Jonas Devlieghere 2019-11-21 13:36:36 -08:00
parent bb090bb1ca
commit 6c2e4e8801
1 changed files with 2 additions and 3 deletions

View File

@ -791,9 +791,8 @@ EXAMPLES:
lldb -K /source/before/crash -k /source/after/crash
Note: In REPL mode no file is loaded, so commands specified to run after
loading the file (via -o or -s) will be ignored.
)___";
llvm::outs() << examples;
loading the file (via -o or -s) will be ignored.)___";
llvm::outs() << examples << '\n';
}
llvm::Optional<int> InitializeReproducer(opt::InputArgList &input_args) {