Added a flag which is set when all data structures are not pool allocated

llvm-svn: 7660
This commit is contained in:
Sumant Kowshik 2003-08-07 04:37:52 +00:00
parent 142e03de74
commit 154c4b21ec

View File

@ -100,6 +100,11 @@ class PoolAllocate : public Pass {
// If an equivalence class does not require pool arguments, it is not
// on this map.
std::map<Function *, int> EqClass2LastPoolArg;
// Exception flags
// CollapseFlag set if all data structures are not pool allocated, due to
// collapsing of nodes in the DS graph
unsigned CollapseFlag;
public:
bool run(Module &M);