From fc03f8fcb61994c6a585ea6717183a9f6fea10b5 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Tue, 25 Mar 2014 18:47:07 +0000 Subject: [PATCH] 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. llvm-svn: 204745 --- lldb/source/Commands/CommandObjectExpression.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 2598f3f9fecd..28fd322109e7 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -173,7 +173,7 @@ CommandObjectExpression::CommandOptions::OptionParsingStarting (CommandInterpret } else { - ignore_breakpoints = false; + ignore_breakpoints = true; unwind_on_error = true; }