diff options
| author | Jim Ingham <jingham@apple.com> | 2015-04-16 17:32:27 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2015-04-16 17:32:27 +0000 |
| commit | 162deb1f7434a4f6b5f06898d4c58120f4940d84 (patch) | |
| tree | ad962e98684c7b6c0ff583dfb6fbc8a63e1176ac /lldb/source/Commands/CommandObjectBreakpoint.cpp | |
| parent | 8f1303663a52c4bad45c5110bcdc200cf60ce19d (diff) | |
| download | bcm5719-llvm-162deb1f7434a4f6b5f06898d4c58120f4940d84.tar.gz bcm5719-llvm-162deb1f7434a4f6b5f06898d4c58120f4940d84.zip | |
The last argument to CreateExceptionBreakpoint is "internal" not Hardware.
llvm-svn: 235122
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp')
| -rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp index 5a3243be02c..6c3fb7503c7 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -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: |

