diff options
author | Jim Ingham <jingham@apple.com> | 2013-02-14 03:05:42 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2013-02-14 03:05:42 +0000 |
commit | 0ac5709027bd71230053115af79f7a426d4862ee (patch) | |
tree | 361ff7bd34a2423c40f5fca65294538056d634e6 /lldb/source/Target/ThreadPlanCallFunction.cpp | |
parent | ec8a54904e5eb1af6ae6f193887c3ea0ff2de03a (diff) | |
download | bcm5719-llvm-0ac5709027bd71230053115af79f7a426d4862ee.tar.gz bcm5719-llvm-0ac5709027bd71230053115af79f7a426d4862ee.zip |
Add a test for handling a function call that throws an exception, and make it work.
<rdar://problem/13183944>
llvm-svn: 175127
Diffstat (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanCallFunction.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp index 70a3455b4db..c48f4fb7fe9 100644 --- a/lldb/source/Target/ThreadPlanCallFunction.cpp +++ b/lldb/source/Target/ThreadPlanCallFunction.cpp @@ -579,12 +579,6 @@ ThreadPlanCallFunction::BreakpointsExplainStop() return true; } - // Finally, if the process is set to ignore breakpoints in function calls, - // then we explain all breakpoint stops. - - if (m_ignore_breakpoints) - return true; - return false; } |