[LLVMdev] (no subject)
Shen Liu
shl413 at lehigh.edu
Tue May 12 11:38:45 PDT 2015
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>
More information about the llvm-dev
mailing list