@@ -170,7 +170,7 @@ class CIRBaseBuilderTy : public mlir::OpBuilder {
170
170
/* alignment=*/ intAttr,
171
171
/* mem_order=*/
172
172
cir::MemOrderAttr{},
173
- /* tbaa=*/ cir::TBAAAttr {});
173
+ /* tbaa=*/ mlir::ArrayAttr {});
174
174
}
175
175
176
176
mlir::Value createAlignedLoad (mlir::Location loc, mlir::Value ptr,
@@ -357,7 +357,7 @@ class CIRBaseBuilderTy : public mlir::OpBuilder {
357
357
val.getType ())
358
358
dst = createPtrBitcast (dst, val.getType ());
359
359
return create<cir::StoreOp>(loc, val, dst, _volatile, align, order,
360
- /* tbaa=*/ cir::TBAAAttr {});
360
+ /* tbaa=*/ mlir::ArrayAttr {});
361
361
}
362
362
363
363
mlir::Value createAlloca (mlir::Location loc, cir::PointerType addrType,
@@ -405,7 +405,7 @@ class CIRBaseBuilderTy : public mlir::OpBuilder {
405
405
cir::CopyOp createCopy (mlir::Value dst, mlir::Value src,
406
406
bool isVolatile = false ) {
407
407
return create<cir::CopyOp>(dst.getLoc (), dst, src, isVolatile,
408
- /* tbaa=*/ cir::TBAAAttr {});
408
+ /* tbaa=*/ mlir::ArrayAttr {});
409
409
}
410
410
411
411
cir::MemCpyOp createMemCpy (mlir::Location loc, mlir::Value dst,
0 commit comments