diff options
author | Sumant Kowshik <kowshik@uiuc.edu> | 2003-08-07 04:37:52 +0000 |
---|---|---|
committer | Sumant Kowshik <kowshik@uiuc.edu> | 2003-08-07 04:37:52 +0000 |
commit | edea6d646b1149d121d897c7599bd5daf5590f02 (patch) | |
tree | 79a613130e3bc6884d73a5b08923028e9dc75e47 /include/llvm/Transforms | |
parent | 3314d8d6562cb293827bd4db23c5a927c40ef4aa (diff) | |
download | external_llvm-edea6d646b1149d121d897c7599bd5daf5590f02.zip external_llvm-edea6d646b1149d121d897c7599bd5daf5590f02.tar.gz external_llvm-edea6d646b1149d121d897c7599bd5daf5590f02.tar.bz2 |
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
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r-- | include/llvm/Transforms/PoolAllocate.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Transforms/PoolAllocate.h b/include/llvm/Transforms/PoolAllocate.h index 80afa7b..b6806c1 100644 --- a/include/llvm/Transforms/PoolAllocate.h +++ b/include/llvm/Transforms/PoolAllocate.h @@ -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); |