summaryrefslogtreecommitdiffstats
path: root/lldb/source
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2013-01-15 23:38:09 +0000
committerSean Callanan <scallanan@apple.com>2013-01-15 23:38:09 +0000
commitcaa7df49a96c05009e8a64058b6eb765ecc711b7 (patch)
treeb202d5f84e91c6943f04874dd72c23ab5ff2e272 /lldb/source
parent5a9cd0c8352266eb300b254e076b250fdcf277e0 (diff)
downloadbcm5719-llvm-caa7df49a96c05009e8a64058b6eb765ecc711b7.tar.gz
bcm5719-llvm-caa7df49a96c05009e8a64058b6eb765ecc711b7.zip
Fixes to the code I just committed to reflect
that we now also have to ignore breakpoints when running the expression to collect isas. llvm-svn: 172575
Diffstat (limited to 'lldb/source')
-rw-r--r--lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
index fb52d0afdce..f194ac3d2d9 100644
--- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
+++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
@@ -2065,6 +2065,7 @@ AppleObjCRuntimeV2::UpdateISAToDescriptorMapIfNeeded()
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 @@ AppleObjCRuntimeV2::UpdateISAToDescriptorMapIfNeeded()
100000,
try_all_threads,
unwind_on_error,
+ ignore_breakpoints,
num_isas_value);
if (results != eExecutionCompleted)
@@ -2154,6 +2156,7 @@ AppleObjCRuntimeV2::UpdateISAToDescriptorMapIfNeeded()
100000,
try_all_threads,
unwind_on_error,
+ ignore_breakpoints,
num_isas_value);
if (results != eExecutionCompleted)
OpenPOWER on IntegriCloud