[Mlir-commits] [mlir] [MLIR][NVVM] Add "exclusive" support in tcgen05 alloc/dealloc Ops (PR #219451)
Dharuni R Acharya
llvmlistbot at llvm.org
Sun Aug 30 21:12:16 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()));
----------------
DharuniRAcharya wrote:
Sure, updated in the latest revision!
https://github.com/llvm/llvm-project/pull/219451
More information about the Mlir-commits
mailing list