[llvm-branch-commits] [flang] [llvm] [mlir] [MLIR][OpenMP] Add OpenMPToLLVMIRTranslation support for is_device_ptr (PR #169367)
Akash Banerjee via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Nov 25 10:14:49 PST 2025
================
@@ -332,10 +332,7 @@ static LogicalResult checkImplementationStatus(Operation &op) {
op.getInReductionSyms())
result = todo("in_reduction");
};
- auto checkIsDevicePtr = [&todo](auto op, LogicalResult &result) {
- if (!op.getIsDevicePtrVars().empty())
- result = todo("is_device_ptr");
- };
+ auto checkIsDevicePtr = [](auto, LogicalResult &) {};
----------------
TIFitis wrote:
Done.
https://github.com/llvm/llvm-project/pull/169367
More information about the llvm-branch-commits
mailing list