forked from OSchip/llvm-project
[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:
parent
bb090bb1ca
commit
6c2e4e8801
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue