void ProgramDependencyGraph::getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<ControlDependencyGraph>(); AU.addRequired<DataDependencyGraph>(); AU.setPreservesAll(); } bool ProgramDependencyGraph::runOnModule(Module &M) { Global_AA = &getAnalysis<AliasAnalysis>(); for(Module::iterator F = M.begin(), E = M.end(); F != E; ++F){ } } -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150512/11af5b03/attachment.html>