[Lldb-commits] [PATCH] D15778: [lldb] Ignore breakpoints by default in SBFrame::EvaluateExpression

Eugene Leviant via lldb-commits lldb-commits at lists.llvm.org
Wed Jan 27 06:26:16 PST 2016


evgeny777 updated this revision to Diff 46129.

http://reviews.llvm.org/D15778

Files:
  source/API/SBFrame.cpp

Index: source/API/SBFrame.cpp
===================================================================
--- source/API/SBFrame.cpp
+++ source/API/SBFrame.cpp
@@ -1389,6 +1389,7 @@
         lldb::DynamicValueType fetch_dynamic_value = frame->CalculateTarget()->GetPreferDynamicValue();
         options.SetFetchDynamicValue (fetch_dynamic_value);
         options.SetUnwindOnError (true);
+        options.SetIgnoreBreakpoints (true);
         if (target->GetLanguage() != eLanguageTypeUnknown)
             options.SetLanguage(target->GetLanguage());
         else


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D15778.46129.patch
Type: text/x-patch
Size: 559 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20160127/5e524711/attachment.bin>


More information about the lldb-commits mailing list