[llvm-commits] CVS: llvm/include/llvm/Transforms/PoolAllocate.h
Sumant Kowshik
kowshik at cs.uiuc.edu
Wed Aug 6 23:39:01 PDT 2003
Changes in directory llvm/include/llvm/Transforms:
PoolAllocate.h updated: 1.5 -> 1.6
---
Log message:
Added a flag which is set when all data structures are not pool allocated
---
Diffs of the changes:
Index: llvm/include/llvm/Transforms/PoolAllocate.h
diff -u llvm/include/llvm/Transforms/PoolAllocate.h:1.5 llvm/include/llvm/Transforms/PoolAllocate.h:1.6
--- llvm/include/llvm/Transforms/PoolAllocate.h:1.5 Tue Aug 5 11:56:59 2003
+++ llvm/include/llvm/Transforms/PoolAllocate.h Wed Aug 6 23:37:52 2003
@@ -100,6 +100,11 @@
// 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);
More information about the llvm-commits
mailing list