mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-14 17:34:41 +00:00
Use pointer size function where only a pointer is expected
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207023 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e384ec7853
commit
16fc3db324
@ -708,7 +708,7 @@ IntegerType *DataLayout::getIntPtrType(LLVMContext &C,
|
|||||||
Type *DataLayout::getIntPtrType(Type *Ty) const {
|
Type *DataLayout::getIntPtrType(Type *Ty) const {
|
||||||
assert(Ty->isPtrOrPtrVectorTy() &&
|
assert(Ty->isPtrOrPtrVectorTy() &&
|
||||||
"Expected a pointer or pointer vector type.");
|
"Expected a pointer or pointer vector type.");
|
||||||
unsigned NumBits = getTypeSizeInBits(Ty->getScalarType());
|
unsigned NumBits = getPointerTypeSizeInBits(Ty);
|
||||||
IntegerType *IntTy = IntegerType::get(Ty->getContext(), NumBits);
|
IntegerType *IntTy = IntegerType::get(Ty->getContext(), NumBits);
|
||||||
if (VectorType *VecTy = dyn_cast<VectorType>(Ty))
|
if (VectorType *VecTy = dyn_cast<VectorType>(Ty))
|
||||||
return VectorType::get(IntTy, VecTy->getNumElements());
|
return VectorType::get(IntTy, VecTy->getNumElements());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user