diff options
author | Jim Ingham <jingham@apple.com> | 2013-01-31 19:48:57 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2013-01-31 19:48:57 +0000 |
commit | afc1b12f0187247d2799b35af88d98c3d815e446 (patch) | |
tree | d175ed94edc899e4c5d5d9b774d110544177e52d /lldb/source/Target | |
parent | cc538345be8b30e4f47421a282ba254576e5b88b (diff) | |
download | bcm5719-llvm-afc1b12f0187247d2799b35af88d98c3d815e446.tar.gz bcm5719-llvm-afc1b12f0187247d2799b35af88d98c3d815e446.zip |
Change the default behavior for unwinding and breakpoints when running expressions.
<rdar://problem/13121442>
llvm-svn: 174082
Diffstat (limited to 'lldb/source/Target')
-rw-r--r-- | lldb/source/Target/Process.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 699063ff938..a1ce46928da 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -97,8 +97,8 @@ g_properties[] = { "disable-memory-cache" , OptionValue::eTypeBoolean, false, DISABLE_MEM_CACHE_DEFAULT, NULL, NULL, "Disable reading and caching of memory in fixed-size units." }, { "extra-startup-command", OptionValue::eTypeArray , false, OptionValue::eTypeString, NULL, NULL, "A list containing extra commands understood by the particular process plugin used. " "For instance, to turn on debugserver logging set this to \"QSetLogging:bitmask=LOG_DEFAULT;\"" }, - { "ignore-breakpoints-in-expressions", OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true, breakpoints will be ignored during expression evaluation." }, - { "unwind-on-error-in-expressions", OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true, errors in expression evaluation will unwind the stack back to the state before the call." }, + { "ignore-breakpoints-in-expressions", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, breakpoints will be ignored during expression evaluation." }, + { "unwind-on-error-in-expressions", OptionValue::eTypeBoolean, true, true, NULL, NULL, "If true, errors in expression evaluation will unwind the stack back to the state before the call." }, { "python-os-plugin-path", OptionValue::eTypeFileSpec, false, true, NULL, NULL, "A path to a python OS plug-in module file that contains a OperatingSystemPlugIn class." }, { "stop-on-sharedlibrary-events" , OptionValue::eTypeBoolean, true, false, NULL, NULL, "If true, stop when a shared library is loaded or unloaded." }, { NULL , OptionValue::eTypeInvalid, false, 0, NULL, NULL, NULL } |