[clang] [CIR] Upstream zero init for global variables (PR #133100)
Amr Hesham via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 26 07:59:47 PDT 2025
================
@@ -67,6 +67,40 @@ class CIRBaseBuilderTy : public mlir::OpBuilder {
return create<cir::ConstantOp>(loc, attr.getType(), attr);
}
+ mlir::TypedAttr getConstNullPtrAttr(mlir::Type t) {
+ assert(mlir::isa<cir::PointerType>(t) && "expected cir.ptr");
+ return getConstPtrAttr(t, 0);
+ }
+
+ mlir::TypedAttr getZeroAttr(mlir::Type t) {
+ return cir::ZeroAttr::get(getContext(), t);
+ }
+
+ mlir::TypedAttr getZeroInitAttr(mlir::Type ty) {
----------------
AmrDeveloper wrote:
We need to update this function in the incubator to add the missing types @andykaylor
https://github.com/llvm/llvm-project/pull/133100
More information about the cfe-commits
mailing list