diff options
author | Jim Ingham <jingham@apple.com> | 2014-04-22 01:42:22 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-04-22 01:42:22 +0000 |
commit | 23ef27cd46a53a36e9b1e88d952796249f0c32c5 (patch) | |
tree | 810e230e62b53947e34a70ddf265f0a7f0b0aeac /lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp | |
parent | fd95f8961e5f45e082837e211b139010cf785dde (diff) | |
download | bcm5719-llvm-23ef27cd46a53a36e9b1e88d952796249f0c32c5.tar.gz bcm5719-llvm-23ef27cd46a53a36e9b1e88d952796249f0c32c5.zip |
Give the clang functions names. This is only for logging.
llvm-svn: 206836
Diffstat (limited to 'lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp')
-rw-r--r-- | lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp b/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp index b58ef0c985d..47c883e72dc 100644 --- a/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp +++ b/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp @@ -218,9 +218,10 @@ AppleGetThreadItemInfoHandler::SetupGetThreadItemInfoFunction (Thread &thread, V ClangASTContext *clang_ast_context = thread.GetProcess()->GetTarget().GetScratchClangASTContext(); ClangASTType get_thread_item_info_return_type = clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); m_get_thread_item_info_function.reset(new ClangFunction (thread, - get_thread_item_info_return_type, - impl_code_address, - get_thread_item_info_arglist)); + get_thread_item_info_return_type, + impl_code_address, + get_thread_item_info_arglist, + "queue-thread-item-info")); errors.Clear(); unsigned num_errors = m_get_thread_item_info_function->CompileFunction(errors); |