diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-10-08 16:36:25 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-08 16:36:25 +0000 |
commit | e5e2b0c3079e402684450e6ceeae6f5eda10d5f4 (patch) | |
tree | f15663bd3215a343bf91dcf9de5cb921dc2bcf10 /lldb/source/Interpreter/CommandObject.cpp | |
parent | 99463ca8cf42b8721af546c24b072ec2d4f008d3 (diff) | |
download | bcm5719-llvm-e5e2b0c3079e402684450e6ceeae6f5eda10d5f4.tar.gz bcm5719-llvm-e5e2b0c3079e402684450e6ceeae6f5eda10d5f4.zip |
Fixed a crasher when doing 'help image dump symtab'. Supply the entry to the global arguments table.
llvm-svn: 116058
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 8cd8b499299..5e2ef9a2d22 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -673,6 +673,7 @@ CommandObject::g_arguments_data[] = { eArgTypeSettingVariableName, "setting-variable-name", CommandCompletions::eNoCompletion, NULL, "The name of a settable internal debugger variable. Type 'settings list' to see a complete list of such variables." }, { eArgTypeShlibName, "shlib-name", CommandCompletions::eNoCompletion, NULL, "The name of a shared library." }, { eArgTypeSourceFile, "source-file", CommandCompletions::eNoCompletion, NULL, "The name of a source file.." }, + { eArgTypeSortOrder, "sort-order", CommandCompletions::eNoCompletion, NULL, "The sort order when dumping the symbol table." }, { eArgTypeStartAddress, "start-address", CommandCompletions::eNoCompletion, NULL, "Help text goes here." }, { eArgTypeSymbol, "symbol", CommandCompletions::eNoCompletion, NULL, "Any symbol name (function name, variable, argument, etc.)" }, { eArgTypeThreadID, "thread-id", CommandCompletions::eNoCompletion, NULL, "Thread ID number." }, |