summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectBreakpoint.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2010-11-02 03:02:38 +0000
committerGreg Clayton <gclayton@apple.com>2010-11-02 03:02:38 +0000
commit2856d46252db5af0c90fec552ffc4a80a4654db2 (patch)
tree4f78981c228a5dd024e587765b441cb8318c816b /lldb/source/Commands/CommandObjectBreakpoint.cpp
parent3050d9bdb84e322e122219d54aedfe2d8ef7c51c (diff)
downloadbcm5719-llvm-2856d46252db5af0c90fec552ffc4a80a4654db2.tar.gz
bcm5719-llvm-2856d46252db5af0c90fec552ffc4a80a4654db2.zip
Fixed the default file and line breakpoints to include inlined breakpoints.
llvm-svn: 118002
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectBreakpoint.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp
index 237ac89a35e..5dc5c0ac11e 100644
--- a/lldb/source/Commands/CommandObjectBreakpoint.cpp
+++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp
@@ -52,7 +52,7 @@ CommandObjectBreakpointSet::CommandOptions::CommandOptions() :
m_filename (),
m_line_num (0),
m_column (0),
- m_ignore_inlines (false),
+ m_check_inlines (true),
m_func_name (),
m_func_name_type_mask (0),
m_func_regexp (),
@@ -367,7 +367,7 @@ CommandObjectBreakpointSet::Execute
bp = target->CreateBreakpoint (&module_spec,
file,
m_options.m_line_num,
- m_options.m_ignore_inlines).get();
+ m_options.m_check_inlines).get();
if (bp)
{
StreamString &output_stream = result.GetOutputStream();
@@ -391,7 +391,7 @@ CommandObjectBreakpointSet::Execute
bp = target->CreateBreakpoint (NULL,
file,
m_options.m_line_num,
- m_options.m_ignore_inlines).get();
+ m_options.m_check_inlines).get();
}
break;
OpenPOWER on IntegriCloud