Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DInliner.cpp565 SmallVector<CallGraphNode *, 16> FunctionsToRemove; in removeDeadFunctions() local
578 FunctionsToRemove.push_back(CGN); in removeDeadFunctions()
623 if (FunctionsToRemove.empty()) in removeDeadFunctions()
633 array_pod_sort(FunctionsToRemove.begin(), FunctionsToRemove.end()); in removeDeadFunctions()
634 FunctionsToRemove.erase( in removeDeadFunctions()
635 std::unique(FunctionsToRemove.begin(), FunctionsToRemove.end()), in removeDeadFunctions()
636 FunctionsToRemove.end()); in removeDeadFunctions()
637 for (CallGraphNode *CGN : FunctionsToRemove) { in removeDeadFunctions()