Removing unused function.

llvm-svn: 267236
This commit is contained in:
Andrew Kaylor 2016-04-22 22:24:20 +00:00
parent b6bd4618eb
commit 79a933a686
1 changed files with 0 additions and 15 deletions

View File

@ -85,21 +85,6 @@ static std::string getDescription(const CallGraphSCC &SCC) {
return Desc;
}
static std::string getDescription(const LazyCallGraph::SCC &SCC) {
std::string Desc = "SCC (";
bool First = true;
for (LazyCallGraph::Node &CGN : SCC) {
if (First)
First = false;
else
Desc += ", ";
Function &F = CGN.getFunction();
Desc += F.getName();
}
Desc += ")";
return Desc;
}
// Force instantiations.
template bool OptBisect::shouldRunPass(const Pass *, const Module &);
template bool OptBisect::shouldRunPass(const Pass *, const Function &);