[clang] [CIR] Upstream support for array new with empty initializer list (PR #178806)
Andy Kaylor via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 30 10:39:36 PST 2026
================
@@ -197,6 +197,12 @@ class CIRGenBuilderTy : public cir::CIRBaseBuilderTy {
mlir::Value src, mlir::Value len) {
return cir::MemCpyOp::create(*this, loc, dst, src, len);
}
+
+ cir::MemSetOp createMemSet(mlir::Location loc, mlir::Value dst,
+ mlir::Value val, mlir::Value len) {
+ val = createIntCast(val, cir::IntType::get(getContext(), 32, true));
----------------
andykaylor wrote:
You're absolutely right. I was thinking of the libc signature when I moved this code over so, I didn't question it being a 32-bit value, but I see that the LLVM dialect operation and the LLVM IR intrinsic both take an 8-bit value. I'll update this.
https://github.com/llvm/llvm-project/pull/178806
More information about the cfe-commits
mailing list