Fixed the default file and line breakpoints to include inlined breakpoints.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@118002 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectBreakpoint.cpp b/source/Commands/CommandObjectBreakpoint.cpp
index 237ac89..5dc5c0a 100644
--- a/source/Commands/CommandObjectBreakpoint.cpp
+++ b/source/Commands/CommandObjectBreakpoint.cpp
@@ -52,7 +52,7 @@
     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 @@
                         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 @@
                     bp = target->CreateBreakpoint (NULL,
                                                    file,
                                                    m_options.m_line_num,
-                                                   m_options.m_ignore_inlines).get();
+                                                   m_options.m_check_inlines).get();
             }
             break;
 
diff --git a/source/Commands/CommandObjectBreakpoint.h b/source/Commands/CommandObjectBreakpoint.h
index fb13576..5b09315 100644
--- a/source/Commands/CommandObjectBreakpoint.h
+++ b/source/Commands/CommandObjectBreakpoint.h
@@ -99,7 +99,7 @@
         std::string m_filename;
         uint32_t m_line_num;
         uint32_t m_column;
-        bool m_ignore_inlines;
+        bool m_check_inlines;
         std::string m_func_name;
         uint32_t m_func_name_type_mask;
         std::string m_func_regexp;