search for: f_it

Displaying 2 results from an estimated 2 matches for "f_it".

Did you mean: f_in
2010 Sep 15
2
[LLVMdev] getAnalysis<LoopInfo> from ModulePass
...unction::const_iterator BB = F.begin(), E = F.end(); for (; BB != E; ++BB) errs() << BB->getName() << " " << LI->getLoopDepth(&*BB) << "\n"; }; virtual bool runOnModule(Module &M) { Module::const_iterator f_it = M.begin(), f_ite = M.end(); for ( ; f_it != f_ite; ++f_it ) { errs() << f_it->getName() << '\n'; if (!f_it->isDeclaration()) getLoopInfo(*f_it); } return true; } virtual void getAnalysisUsage(AnalysisUsage &a...
2010 Sep 15
0
[LLVMdev] getAnalysis<LoopInfo> from ModulePass
...tor BB = F.begin(), E = F.end(); >        for (; BB != E; ++BB) >          errs() << BB->getName() << " " << LI->getLoopDepth(&*BB) << "\n"; >    }; > >    virtual bool runOnModule(Module &M) { >      Module::const_iterator f_it = M.begin(), f_ite = M.end(); >      for ( ; f_it != f_ite; ++f_it ) >      { >        errs() << f_it->getName() << '\n'; >        if (!f_it->isDeclaration()) >          getLoopInfo(*f_it); >      } >      return true; >    } > >    virtual vo...