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
This commit is contained in:
Sean Callanan 2013-01-15 23:38:09 +00:00
parent 5a9cd0c835
commit caa7df49a9
1 changed files with 3 additions and 0 deletions

View File

@ -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)