mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-25 04:39:51 +00:00
Removing unused function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@267236 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
50cc811aee
commit
8a1d408868
@ -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 &);
|
||||
|
Loading…
Reference in New Issue
Block a user