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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7660 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sumant Kowshik 2003-08-07 04:37:52 +00:00
parent 3314d8d656
commit edea6d646b

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);