[Lldb-commits] [lldb] r172575 - /lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
Sean Callanan
scallanan at apple.com
Tue Jan 15 15:38:09 PST 2013
Author: spyffe
Date: Tue Jan 15 17:38:09 2013
New Revision: 172575
URL: http://llvm.org/viewvc/llvm-project?rev=172575&view=rev
Log:
Fixes to the code I just committed to reflect
that we now also have to ignore breakpoints
when running the expression to collect isas.
Modified:
lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
Modified: lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp?rev=172575&r1=172574&r2=172575&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp (original)
+++ lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp Tue Jan 15 17:38:09 2013
@@ -2065,6 +2065,7 @@
bool stop_others = true;
bool try_all_threads = false;
bool unwind_on_error = true;
+ bool ignore_breakpoints = true;
Value num_isas_value;
num_isas_value.SetValueType (Value::eValueTypeScalar);
@@ -2080,6 +2081,7 @@
100000,
try_all_threads,
unwind_on_error,
+ ignore_breakpoints,
num_isas_value);
if (results != eExecutionCompleted)
@@ -2154,6 +2156,7 @@
100000,
try_all_threads,
unwind_on_error,
+ ignore_breakpoints,
num_isas_value);
if (results != eExecutionCompleted)
More information about the lldb-commits
mailing list