[llvm-commits] CVS: poolalloc/runtime/FL2Allocator/PoolAllocator.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Mar 5 04:54:00 PST 2004
Changes in directory poolalloc/runtime/FL2Allocator:
PoolAllocator.h updated: 1.4 -> 1.5
---
Log message:
Give freed nodes a previous pointer
---
Diffs of the changes: (+3 -0)
Index: poolalloc/runtime/FL2Allocator/PoolAllocator.h
diff -u poolalloc/runtime/FL2Allocator/PoolAllocator.h:1.4 poolalloc/runtime/FL2Allocator/PoolAllocator.h:1.5
--- poolalloc/runtime/FL2Allocator/PoolAllocator.h:1.4 Fri Mar 5 03:33:13 2004
+++ poolalloc/runtime/FL2Allocator/PoolAllocator.h Fri Mar 5 04:52:47 2004
@@ -34,6 +34,9 @@
// Next - The next object in the free list.
FreedNodeHeader *Next;
+
+ // PrevP - The pointer that points to this node on the free list.
+ FreedNodeHeader **PrevP;
};
More information about the llvm-commits
mailing list