From edea6d646b1149d121d897c7599bd5daf5590f02 Mon Sep 17 00:00:00 2001 From: Sumant Kowshik Date: Thu, 7 Aug 2003 04:37:52 +0000 Subject: [PATCH] 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 --- include/llvm/Transforms/PoolAllocate.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/llvm/Transforms/PoolAllocate.h b/include/llvm/Transforms/PoolAllocate.h index 80afa7bfe0f..b6806c12a1b 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 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);