diff options
author | Sean Callanan <scallanan@apple.com> | 2012-09-13 21:11:40 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2012-09-13 21:11:40 +0000 |
commit | cd8b7cd0df423600d5d56ead7e01748cfbd3f8ce (patch) | |
tree | 831e70c9ee99b54cb6ef2f6dd91bef0802a4c538 /lldb/source/Interpreter/CommandObject.cpp | |
parent | c5c01a60c2e3f0d7ec566b025a4537938f00b452 (diff) | |
download | bcm5719-llvm-cd8b7cd0df423600d5d56ead7e01748cfbd3f8ce.tar.gz bcm5719-llvm-cd8b7cd0df423600d5d56ead7e01748cfbd3f8ce.zip |
Made the help for the -n option on
"target image lookup" a bit better
documented by indicating that it takes
symbols OR functions.
<rdar://problem/12281325>
llvm-svn: 163839
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObject.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index d9731eb8e71..11e90f243df 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -936,6 +936,7 @@ CommandObject::g_arguments_data[] = { eArgTypeFrameIndex, "frame-index", CommandCompletions::eNoCompletion, { NULL, false }, "Index into a thread's list of frames." }, { eArgTypeFullName, "fullname", CommandCompletions::eNoCompletion, { NULL, false }, "Help text goes here." }, { eArgTypeFunctionName, "function-name", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a function." }, + { eArgTypeFunctionOrSymbol, "function-or-symbol", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a function or symbol." }, { eArgTypeGDBFormat, "gdb-format", CommandCompletions::eNoCompletion, { GDBFormatHelpTextCallback, true }, NULL }, { eArgTypeIndex, "index", CommandCompletions::eNoCompletion, { NULL, false }, "An index into a list." }, { eArgTypeLanguage, "language", CommandCompletions::eNoCompletion, { NULL, false }, "A source language name." }, |