diff options
author | Jim Ingham <jingham@apple.com> | 2013-04-09 22:34:06 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2013-04-09 22:34:06 +0000 |
commit | aa577f464ddfc333b3f382cd98cfa4d8cc699fae (patch) | |
tree | e65719a6de94e3aea9bd56d1703d8a26531c7c01 /lldb/source/Commands/CommandObjectExpression.cpp | |
parent | 798a7709fc157a0ffc9d1dd2a98f2443d9144de8 (diff) | |
download | llvm-aa577f464ddfc333b3f382cd98cfa4d8cc699fae.zip llvm-aa577f464ddfc333b3f382cd98cfa4d8cc699fae.tar.gz llvm-aa577f464ddfc333b3f382cd98cfa4d8cc699fae.tar.bz2 |
Fix the help for unwind-on-error, it no longer controls what happens when an expression hits a breakpoint.
llvm-svn: 179133
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 927dc62..c47d477 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -55,7 +55,7 @@ CommandObjectExpression::CommandOptions::g_option_table[] = { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "all-threads", 'a', required_argument, NULL, 0, eArgTypeBoolean, "Should we run all threads if the execution doesn't complete on one thread."}, { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "ignore-breakpoints", 'i', required_argument, NULL, 0, eArgTypeBoolean, "Ignore breakpoint hits while running expressions"}, { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "timeout", 't', required_argument, NULL, 0, eArgTypeUnsignedInteger, "Timeout value for running the expression."}, - { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "unwind-on-error", 'u', required_argument, NULL, 0, eArgTypeBoolean, "Clean up program state if the expression causes a crash, breakpoint hit or signal."}, + { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "unwind-on-error", 'u', required_argument, NULL, 0, eArgTypeBoolean, "Clean up program state if the expression causes a crash, or raises a signal. Note, unlike gdb hitting a breakpoint is controlled by another option (-i)."}, }; |