[Lldb-commits] [PATCH] D40022: Remove extra minuses from command option
Tatyana Krasnukha via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 22 07:28:29 PST 2017
tatyana-krasnukha updated this revision to Diff 123942.
tatyana-krasnukha retitled this revision from "Corrected two typos and removed unused variable" to "Remove extra minuses from command option".
tatyana-krasnukha edited the summary of this revision.
tatyana-krasnukha added a comment.
Things that didn't require review was committed separately.
Repository:
rL LLVM
https://reviews.llvm.org/D40022
Files:
CommandObjectTarget.cpp
Index: CommandObjectTarget.cpp
===================================================================
--- CommandObjectTarget.cpp
+++ CommandObjectTarget.cpp
@@ -2586,7 +2586,7 @@
"Fullpath or basename for module to load.", ""),
m_load_option(LLDB_OPT_SET_1, false, "load", 'l',
"Write file contents to the memory.", false, true),
- m_pc_option(LLDB_OPT_SET_1, false, "--set-pc-to-entry", 'p',
+ m_pc_option(LLDB_OPT_SET_1, false, "set-pc-to-entry", 'p',
"Set PC to the entry point."
" Only applicable with '--load' option.",
false, true),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D40022.123942.patch
Type: text/x-patch
Size: 669 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20171122/d680e83b/attachment.bin>
More information about the lldb-commits
mailing list