[Lldb-commits] [lldb] r204745 - A fix for: http://llvm.org/bugs/show_bug.cgi?id=19241

Greg Clayton gclayton at apple.com
Tue Mar 25 11:47:07 PDT 2014


Author: gclayton
Date: Tue Mar 25 13:47:07 2014
New Revision: 204745

URL: http://llvm.org/viewvc/llvm-project?rev=204745&view=rev
Log:
A fix for: http://llvm.org/bugs/show_bug.cgi?id=19241 

When there was no process, the expression options were set to not ignore breakpoints. This causes debug info to be generated and causes errors when evaluating simple expressions.


Modified:
    lldb/trunk/source/Commands/CommandObjectExpression.cpp

Modified: lldb/trunk/source/Commands/CommandObjectExpression.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectExpression.cpp?rev=204745&r1=204744&r2=204745&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectExpression.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectExpression.cpp Tue Mar 25 13:47:07 2014
@@ -173,7 +173,7 @@ CommandObjectExpression::CommandOptions:
     }
     else
     {
-        ignore_breakpoints = false;
+        ignore_breakpoints = true;
         unwind_on_error = true;
     }
     





More information about the lldb-commits mailing list