From 6c3501d5c66a90aa82a278cc368e18fabfdb8199 Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Tue, 12 Jul 2011 11:36:58 +0000 Subject: Remove IntegerType constness from TargetData llvm-svn: 134978 --- llvm/lib/Target/TargetData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib') diff --git a/llvm/lib/Target/TargetData.cpp b/llvm/lib/Target/TargetData.cpp index 6309a1572c5..b2c4b21f680 100644 --- a/llvm/lib/Target/TargetData.cpp +++ b/llvm/lib/Target/TargetData.cpp @@ -535,7 +535,7 @@ unsigned TargetData::getPreferredTypeAlignmentShift(const Type *Ty) const { /// getIntPtrType - Return an unsigned integer type that is the same size or /// greater to the host pointer size. -const IntegerType *TargetData::getIntPtrType(LLVMContext &C) const { +IntegerType *TargetData::getIntPtrType(LLVMContext &C) const { return IntegerType::get(C, getPointerSizeInBits()); } -- cgit v1.2.3