[llvm-commits] [poolalloc] r54823 - /poolalloc/trunk/lib/PoolAllocate/TransformFunctionBody.cpp
John Criswell
criswell at uiuc.edu
Fri Aug 15 14:33:11 PDT 2008
Author: criswell
Date: Fri Aug 15 16:33:11 2008
New Revision: 54823
URL: http://llvm.org/viewvc/llvm-project?rev=54823&view=rev
Log:
Removed unused variable to silence compiler warning.
Modified:
poolalloc/trunk/lib/PoolAllocate/TransformFunctionBody.cpp
Modified: poolalloc/trunk/lib/PoolAllocate/TransformFunctionBody.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/lib/PoolAllocate/TransformFunctionBody.cpp?rev=54823&r1=54822&r2=54823&view=diff
==============================================================================
--- poolalloc/trunk/lib/PoolAllocate/TransformFunctionBody.cpp (original)
+++ poolalloc/trunk/lib/PoolAllocate/TransformFunctionBody.cpp Fri Aug 15 16:33:11 2008
@@ -734,7 +734,6 @@
// Dinakar: We need pooldescriptors for allocas in the callee if it
// escapes
BasicBlock::iterator InsertPt = TheCall->getParent()->getParent()->front().begin();
- Type *VoidPtrTy = PointerType::getUnqual(Type::Int8Ty);
ArgVal = new AllocaInst(PAInfo.getPoolType(), 0, "PD", InsertPt);
Value *ElSize = ConstantInt::get(Type::Int32Ty,0);
Value *Align = ConstantInt::get(Type::Int32Ty,0);
More information about the llvm-commits
mailing list