projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ebb780
)
[Driver] Fix missing space in lldb --help output.
author
Jonas Devlieghere
<jonas@devlieghere.com>
Wed, 20 Nov 2019 21:48:58 +0000
(13:48 -0800)
committer
Jonas Devlieghere
<jonas@devlieghere.com>
Wed, 20 Nov 2019 21:49:22 +0000
(13:49 -0800)
lldb/tools/driver/Driver.cpp
patch
|
blob
|
history
diff --git
a/lldb/tools/driver/Driver.cpp
b/lldb/tools/driver/Driver.cpp
index 9d685f2e35ba724990ecd8305ab57fa1fefb6c71..806922bc860f66a1db41998f0197b3a6890cbc5c 100644
(file)
--- a/
lldb/tools/driver/Driver.cpp
+++ b/
lldb/tools/driver/Driver.cpp
@@
-747,7
+747,7
@@
void reproducer_handler(void *) {
}
static void printHelp(LLDBOptTable &table, llvm::StringRef tool_name) {
- std::string usage_str = tool_name.str() + "
options
";
+ std::string usage_str = tool_name.str() + "
[options]
";
table.PrintHelp(llvm::outs(), usage_str.c_str(), "LLDB", false);
std::string examples = R"___(