[Lldb-commits] [lldb] r235122 - The last argument to CreateExceptionBreakpoint is "internal" not Hardware.

Jim Ingham jingham at apple.com
Thu Apr 16 10:32:27 PDT 2015


Author: jingham
Date: Thu Apr 16 12:32:27 2015
New Revision: 235122

URL: http://llvm.org/viewvc/llvm-project?rev=235122&view=rev
Log:
The last argument to CreateExceptionBreakpoint is "internal" not Hardware.

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

Modified: lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp?rev=235122&r1=235121&r2=235122&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp Thu Apr 16 12:32:27 2015
@@ -559,7 +559,7 @@ protected:
                     bp = target->CreateExceptionBreakpoint (m_options.m_language,
                                                             m_options.m_catch_bp,
                                                             m_options.m_throw_bp,
-                                                            m_options.m_hardware).get();
+                                                            internal).get();
                 }
                 break;
             default:





More information about the lldb-commits mailing list