diff options
author | Greg Clayton <gclayton@apple.com> | 2014-03-25 18:47:07 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-03-25 18:47:07 +0000 |
commit | fc03f8fcb61994c6a585ea6717183a9f6fea10b5 (patch) | |
tree | 0affb1f458ca638c0a613a44407da29b1e1df0b4 /lldb/source/Commands/CommandObjectExpression.cpp | |
parent | d0fe317e0c94b4416c84ece3f87bbdad46407188 (diff) | |
download | bcm5719-llvm-fc03f8fcb61994c6a585ea6717183a9f6fea10b5.tar.gz bcm5719-llvm-fc03f8fcb61994c6a585ea6717183a9f6fea10b5.zip |
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
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 2598f3f9fec..28fd322109e 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; } |