diff options
author | Jim Ingham <jingham@apple.com> | 2012-03-06 00:37:27 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-03-06 00:37:27 +0000 |
commit | fab10e89cea94df0c8aa75cc6a7a0ced7330b587 (patch) | |
tree | 0441509077e99a23b00899700c6f599093e2cbcc /lldb/source/Interpreter/CommandObject.cpp | |
parent | 330de22fe0f6f23af82825909bfe9dd54237ea62 (diff) | |
download | bcm5719-llvm-fab10e89cea94df0c8aa75cc6a7a0ced7330b587.tar.gz bcm5719-llvm-fab10e89cea94df0c8aa75cc6a7a0ced7330b587.zip |
Add a command and an SB API to create exception breakpoints. Make the break output prettier for Exception breakpoints.
llvm-svn: 152081
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 9502ad9619e..a087eca1eec 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -870,6 +870,7 @@ CommandObject::g_arguments_data[] = { eArgTypeFunctionName, "function-name", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a function." }, { 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." }, { eArgTypeLineNum, "linenum", CommandCompletions::eNoCompletion, { NULL, false }, "Line number in a source file." }, { eArgTypeLogCategory, "log-category", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a category within a log channel, e.g. all (try \"log list\" to see a list of all channels and their categories." }, { eArgTypeLogChannel, "log-channel", CommandCompletions::eNoCompletion, { NULL, false }, "The name of a log channel, e.g. process.gdb-remote (try \"log list\" to see a list of all channels and their categories)." }, |