Remove the top-down call graph ABI and use the reverse bottom-up.

Swift SVN r13544
This commit is contained in:
Nadav Rotem
2014-02-06 01:52:14 +00:00
parent cf602d3527
commit 93b5cac34e
5 changed files with 2 additions and 30 deletions

View File

@@ -28,13 +28,6 @@ CallGraphAnalysis::bottomUpCallGraphOrder(std::vector<SILFunction*> &order) {
swift::bottomUpCallGraphOrder(M, order);
}
void
CallGraphAnalysis::topDownCallGraphOrder(std::vector<SILFunction*> &order) {
// TODO: cache this calculation.
swift::topDownCallGraphOrder(M, order);
}
SILAnalysis *swift::createCallGraphAnalysis(SILModule *M) {
return new CallGraphAnalysis(M);
}