[llvm-commits] CVS: poolalloc/runtime/FL2Allocator/PoolAllocator.h
Chris Lattner
lattner at cs.uiuc.edu
Wed Dec 1 19:42:24 PST 2004
Changes in directory poolalloc/runtime/FL2Allocator:
PoolAllocator.h updated: 1.15 -> 1.16
---
Log message:
Add function
---
Diffs of the changes: (+1 -0)
Index: poolalloc/runtime/FL2Allocator/PoolAllocator.h
diff -u poolalloc/runtime/FL2Allocator/PoolAllocator.h:1.15 poolalloc/runtime/FL2Allocator/PoolAllocator.h:1.16
--- poolalloc/runtime/FL2Allocator/PoolAllocator.h:1.15 Wed Nov 10 19:43:54 2004
+++ poolalloc/runtime/FL2Allocator/PoolAllocator.h Wed Dec 1 21:42:13 2004
@@ -103,6 +103,7 @@
void pooldestroy(PoolTy *Pool);
void *poolalloc(PoolTy *Pool, unsigned NumBytes);
void *poolrealloc(PoolTy *Pool, void *Node, unsigned NumBytes);
+ void *poolmemalign(PoolTy *Pool, unsigned Alignment, unsigned NumBytes);
void poolfree(PoolTy *Pool, void *Node);
/// poolobjsize - Reutrn the size of the object at the specified address, in
More information about the llvm-commits
mailing list