forked from OSchip/llvm-project
[Driver] Fix missing space in lldb --help output.
This commit is contained in:
parent
0ebb7803e6
commit
b03374584d
|
@ -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"___(
|
||||
|
|
Loading…
Reference in New Issue