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

@@ -58,10 +58,6 @@ namespace swift {
/// include functions that don't participate in any call (caller or callee).
void bottomUpCallGraphOrder(SILModule *M, std::vector<SILFunction*> &order);
/// Return the top-down call-graph order for module M. Notice that we don't
/// include functions that don't participate in any call (caller or callee).
void topDownCallGraphOrder(SILModule *M, std::vector<SILFunction*> &order);
/// Does the passed in BuiltinFunctionRefInst have any side effects?
bool isSideEffectFree(BuiltinFunctionRefInst *FR);