[cfe-commits] r170826 - in /cfe/trunk: include/clang/Analysis/CallGraph.h lib/Analysis/CallGraph.cpp lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp test/Analysis/debug-CallGraph.c

Jordan Rose jordan_rose at apple.com
Thu Dec 20 17:47:44 PST 2012


One comment for when this gets re-commited:

> 
> +  llvm::ReversePostOrderTraversal<clang::CallGraph*> RPOT(&CG);
> +  for (llvm::ReversePostOrderTraversal<clang::CallGraph*>::rpo_iterator
> +         I = RPOT.begin(); I != RPOT.end(); ++I) {

Cache the end pointer here?




More information about the cfe-commits mailing list