llvm::CallGraphSCCPass::doFinalization

doFinalization overloads

Synopses

Declared in <llvm/Analysis/CallGraphSCCPass.h>

doFinalization - This method is called after the SCC's of the program has been processed, allowing the pass to do final cleanup as necessary.

virtual
bool
doFinalization(CallGraph& CG);
» more...

Perform any cleanup needed after all passes have run.

virtual
bool
doFinalization(Module& M);
» more...

Return Value

  • True if the pass modifies the call graph during finalization.
  • True if the module was modified; false otherwise.

Parameters

NameDescription
CGCall graph of the module being processed.
MThe module being processed.