From b03374584d6878e1fe06868a1cc03c28cc547e88 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 20 Nov 2019 13:48:58 -0800 Subject: [PATCH] [Driver] Fix missing space in lldb --help output. --- lldb/tools/driver/Driver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/tools/driver/Driver.cpp b/lldb/tools/driver/Driver.cpp index 9d685f2..806922b 100644 --- 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"___( -- 2.7.4