Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DAlwaysInliner.cpp43 SmallVector<Function *, 16> InlinedFunctions; in run() local
99 InlinedFunctions.push_back(&F); in run()
105 erase_if(InlinedFunctions, [&](Function *F) { in run()
112 InlinedFunctions, [&](Function *F) { return F->hasComdat(); }); in run()
113 for (Function *F : make_range(NonComdatBegin, InlinedFunctions.end())) { in run()
117 InlinedFunctions.erase(NonComdatBegin, InlinedFunctions.end()); in run()
119 if (!InlinedFunctions.empty()) { in run()
122 filterDeadComdatFunctions(InlinedFunctions); in run()
124 for (Function *F : InlinedFunctions) { in run()