diff options
author | Sean Callanan <scallanan@apple.com> | 2010-11-12 01:37:02 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2010-11-12 01:37:02 +0000 |
commit | 36695cdecd62032733a8a3909983d51681a538bd (patch) | |
tree | 0a83d81f2a9cf7b26fa53993fac50364c41c4090 /lldb/source/Target/Thread.cpp | |
parent | 6df2cd3fbf83897b8392c4a0c34ee91c490a3e19 (diff) | |
download | bcm5719-llvm-36695cdecd62032733a8a3909983d51681a538bd.tar.gz bcm5719-llvm-36695cdecd62032733a8a3909983d51681a538bd.zip |
Excised a version of the low-level function calling
logic that supported calling functions with arbitrary
arguments. We use ClangFunction for this, and the
low-level logic is only required to support one or two
pointer arguments.
llvm-svn: 118871
Diffstat (limited to 'lldb/source/Target/Thread.cpp')
-rw-r--r-- | lldb/source/Target/Thread.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp index 80434cf33f2..eccb700fd26 100644 --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp @@ -726,18 +726,6 @@ Thread::QueueThreadPlanForCallFunction (bool abort_other_plans, } ThreadPlan * -Thread::QueueThreadPlanForCallFunction (bool abort_other_plans, - Address& function, - ValueList &args, - bool stop_other_threads, - bool discard_on_error) -{ - ThreadPlanSP thread_plan_sp (new ThreadPlanCallFunction (*this, function, args, stop_other_threads, discard_on_error)); - QueueThreadPlan (thread_plan_sp, abort_other_plans); - return thread_plan_sp.get(); -} - -ThreadPlan * Thread::QueueThreadPlanForRunToAddress (bool abort_other_plans, Address &target_addr, bool stop_other_threads) |