mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 20:15:49 -04:00

Summary: This change is connected with https://reviews.llvm.org/D69843 In large codebases, we sometimes see Module::FindFunctions (when called from ClangExpressionDeclMap::FindExternalVisibleDecls) returning huge amounts of functions. In current fix I trying to return only function_fullnames from ManualDWARFIndex::GetFunctions when eFunctionNameTypeFull is passed as argument. Reviewers: labath, jarin, aprantl Reviewed By: labath Subscribers: shafik, clayborg, teemperor, arphaman, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D70846
9 lines
302 B
Python
9 lines
302 B
Python
from lldbsuite.test import lldbinline, lldbplatformutil
|
|
from lldbsuite.test import decorators
|
|
|
|
lldbinline.MakeInlineTest(
|
|
__file__, globals(), [
|
|
decorators.expectedFailureAll(
|
|
bugnumber="llvm.org/PR36715",
|
|
oslist=lldbplatformutil.getDarwinOSTriples()+['windows'])])
|