diff options
author | Jim Ingham <jingham@apple.com> | 2012-05-02 00:23:18 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-05-02 00:23:18 +0000 |
commit | 92e1cd431c62e623d16e34dfd2c159f100c1fce8 (patch) | |
tree | 3235ebedad25933a57fb2636fddf34d0db0fc072 /lldb/source/Breakpoint/BreakpointLocation.cpp | |
parent | 70de772d450f4200b207d36fb524c0bfad49a6a6 (diff) | |
download | bcm5719-llvm-92e1cd431c62e623d16e34dfd2c159f100c1fce8.tar.gz bcm5719-llvm-92e1cd431c62e623d16e34dfd2c159f100c1fce8.zip |
Cleanup - removing the ThreadPlanTestCondition and its helper functions. It is not needed,
since we now run the condition in the StopInfoBreakpoint's PerformAction, and don't need
to refer it to another "continue". Actually, we haven't needed to do this for a year or
so, I just hadn't gotten around to deleting the dead wood.
llvm-svn: 155967
Diffstat (limited to 'lldb/source/Breakpoint/BreakpointLocation.cpp')
-rw-r--r-- | lldb/source/Breakpoint/BreakpointLocation.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lldb/source/Breakpoint/BreakpointLocation.cpp b/lldb/source/Breakpoint/BreakpointLocation.cpp index c99eb466378..39f19eb8717 100644 --- a/lldb/source/Breakpoint/BreakpointLocation.cpp +++ b/lldb/source/Breakpoint/BreakpointLocation.cpp @@ -235,15 +235,6 @@ BreakpointLocation::SetCondition (const char *condition) SendBreakpointLocationChangedEvent (eBreakpointEventTypeConditionChanged); } -ThreadPlan * -BreakpointLocation::GetThreadPlanToTestCondition (ExecutionContext &exe_ctx, Stream &error) -{ - if (m_options_ap.get()) - return m_options_ap->GetThreadPlanToTestCondition (exe_ctx, shared_from_this(), error); - else - return m_owner.GetThreadPlanToTestCondition (exe_ctx, shared_from_this(), error); -} - const char * BreakpointLocation::GetConditionText () const { |