From 23ef27cd46a53a36e9b1e88d952796249f0c32c5 Mon Sep 17 00:00:00 2001 From: Jim Ingham Date: Tue, 22 Apr 2014 01:42:22 +0000 Subject: Give the clang functions names. This is only for logging. llvm-svn: 206836 --- .../Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp') 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); -- cgit v1.2.3