[llvm-commits] CVS: poolalloc/lib/PoolAllocate/PoolAllocate.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Oct 26 17:27:01 PST 2003
Changes in directory poolalloc/lib/PoolAllocate:
PoolAllocate.cpp updated: 1.24 -> 1.25
---
Log message:
Add an extra pointer into the pool descriptor type!
---
Diffs of the changes: (+2 -2)
Index: poolalloc/lib/PoolAllocate/PoolAllocate.cpp
diff -u poolalloc/lib/PoolAllocate/PoolAllocate.cpp:1.24 poolalloc/lib/PoolAllocate/PoolAllocate.cpp:1.25
--- poolalloc/lib/PoolAllocate/PoolAllocate.cpp:1.24 Fri Oct 24 13:15:37 2003
+++ poolalloc/lib/PoolAllocate/PoolAllocate.cpp Sun Oct 26 17:26:36 2003
@@ -133,8 +133,8 @@
if (VoidPtrTy == 0) {
VoidPtrTy = PointerType::get(Type::SByteTy);
PoolDescType =
- StructType::get(make_vector<const Type*>(VoidPtrTy, Type::UIntTy,
- Type::UIntTy, 0));
+ StructType::get(make_vector<const Type*>(VoidPtrTy, VoidPtrTy,
+ Type::UIntTy, Type::UIntTy, 0));
PoolDescPtr = PointerType::get(PoolDescType);
}
More information about the llvm-commits
mailing list