Add method to get # nodes in the graph

llvm-svn: 2098
This commit is contained in:
Chris Lattner 2002-04-04 19:20:00 +00:00
parent 4cf90e67f8
commit f31c01714f

@ -432,6 +432,10 @@ public:
const PointerValSet &getRetNodes() const { return RetNode; }
unsigned getGraphSize() const {
return ArgNodes.size() + AllocNodes.size() + ShadowNodes.size() +
GlobalNodes.size() + CallNodes.size();
}
void printFunction(std::ostream &O, const char *Label) const;
};