Deleted Added
full compact
86,110d85
< template <class Analysis, bool OnlyBBS>
< struct GenericGraphViewer : public FunctionPass {
< std::string Name;
<
< GenericGraphViewer(std::string GraphName, const void *ID) : FunctionPass(ID) {
< Name = GraphName;
< }
<
< virtual bool runOnFunction(Function &F) {
< Analysis *Graph;
< std::string Title, GraphName;
< Graph = &getAnalysis<Analysis>();
< GraphName = DOTGraphTraits<Analysis*>::getGraphName(Graph);
< Title = GraphName + " for '" + F.getNameStr() + "' function";
< ViewGraph(Graph, Name, OnlyBBS, Title);
<
< return false;
< }
<
< virtual void getAnalysisUsage(AnalysisUsage &AU) const {
< AU.setPreservesAll();
< AU.addRequired<Analysis>();
< }
< };
<