Home
last modified time | relevance | path

Searched refs:InlinedFunctions (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DAlwaysInliner.cpp48 SmallVector<Function *, 16> InlinedFunctions; in run() local
98 InlinedFunctions.push_back(&F); in run()
103 erase_if(InlinedFunctions, [&](Function *F) { in run()
110 InlinedFunctions, [&](Function *F) { return F->hasComdat(); }); in run()
111 for (Function *F : make_range(NonComdatBegin, InlinedFunctions.end())) in run()
113 InlinedFunctions.erase(NonComdatBegin, InlinedFunctions.end()); in run()
115 if (!InlinedFunctions.empty()) { in run()
118 filterDeadComdatFunctions(M, InlinedFunctions); in run()
120 for (Function *F : InlinedFunctions) in run()