forked from OSchip/llvm-project
[CodeGen] Avoid some deprecated Address constructors
Some of these are on the critical path towards making something minimal work with opaque pointers.
This commit is contained in:
parent
36b0325c44
commit
90bbf79c7b
|
@ -71,7 +71,7 @@ Address CodeGenFunction::CreateTempAllocaWithoutCast(llvm::Type *Ty,
|
|||
llvm::Value *ArraySize) {
|
||||
auto Alloca = CreateTempAlloca(Ty, Name, ArraySize);
|
||||
Alloca->setAlignment(Align.getAsAlign());
|
||||
return Address(Alloca, Align);
|
||||
return Address(Alloca, Ty, Align);
|
||||
}
|
||||
|
||||
/// CreateTempAlloca - This creates a alloca and inserts it into the entry
|
||||
|
@ -101,7 +101,7 @@ Address CodeGenFunction::CreateTempAlloca(llvm::Type *Ty, CharUnits Align,
|
|||
Ty->getPointerTo(DestAddrSpace), /*non-null*/ true);
|
||||
}
|
||||
|
||||
return Address(V, Align);
|
||||
return Address(V, Ty, Align);
|
||||
}
|
||||
|
||||
/// CreateTempAlloca - This creates an alloca and inserts it into the entry
|
||||
|
@ -144,7 +144,7 @@ Address CodeGenFunction::CreateMemTemp(QualType Ty, CharUnits Align,
|
|||
/*ArraySize=*/nullptr, Alloca);
|
||||
|
||||
if (Ty->isConstantMatrixType()) {
|
||||
auto *ArrayTy = cast<llvm::ArrayType>(Result.getType()->getElementType());
|
||||
auto *ArrayTy = cast<llvm::ArrayType>(Result.getElementType());
|
||||
auto *VectorTy = llvm::FixedVectorType::get(ArrayTy->getElementType(),
|
||||
ArrayTy->getNumElements());
|
||||
|
||||
|
@ -1160,7 +1160,8 @@ Address CodeGenFunction::EmitPointerWithAlignment(const Expr *E,
|
|||
// Otherwise, use the alignment of the type.
|
||||
CharUnits Align =
|
||||
CGM.getNaturalPointeeTypeAlignment(E->getType(), BaseInfo, TBAAInfo);
|
||||
return Address(EmitScalarExpr(E), Align);
|
||||
llvm::Type *ElemTy = ConvertTypeForMem(E->getType()->getPointeeType());
|
||||
return Address(EmitScalarExpr(E), ElemTy, Align);
|
||||
}
|
||||
|
||||
llvm::Value *CodeGenFunction::EmitNonNullRValueCheck(RValue RV, QualType T) {
|
||||
|
|
Loading…
Reference in New Issue