[Mlir-commits] [mlir] [MLIR][NVVM] Add "exclusive" support in tcgen05 alloc/dealloc Ops (PR #219451)

Rajat Bajpai llvmlistbot at llvm.org
Fri Aug 28 06:01:52 PDT 2026


================
@@ -5533,7 +5534,8 @@ llvm::Intrinsic::ID Tcgen05DeallocOp::getIntrinsicIDAndArgs(
   // Fill the Intrinsic Args
   args.push_back(mt.lookupValue(curOp.getTaddr()));
   args.push_back(mt.lookupValue(curOp.getNCols()));
-  args.push_back(llvm::ConstantInt::getFalse(mt.getLLVMContext()));
+  args.push_back(
+      llvm::ConstantInt::getBool(mt.getLLVMContext(), curOp.getIsExclusive()));
----------------
rajatbajpai wrote:

Is it possible to use `builder.getInt1`? This would be simpler.

https://github.com/llvm/llvm-project/pull/219451


More information about the Mlir-commits mailing list