mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 00:31:54 +00:00
Add method to get # nodes in the graph
llvm-svn: 2098
This commit is contained in:
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;
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user