Home | History | Annotate | Download | only in IPO

Lines Matching refs:FunctionsToRemove

717   SmallVector<CallGraphNode *, 16> FunctionsToRemove;
730 FunctionsToRemove.push_back(CGN);
734 // from the program. Insert the dead ones in the FunctionsToRemove set.
775 if (FunctionsToRemove.empty())
785 array_pod_sort(FunctionsToRemove.begin(), FunctionsToRemove.end());
786 FunctionsToRemove.erase(
787 std::unique(FunctionsToRemove.begin(), FunctionsToRemove.end()),
788 FunctionsToRemove.end());
789 for (CallGraphNode *CGN : FunctionsToRemove) {