[Mlir-commits] [mlir] 43a1a33 - [mlir] add StringRef override for FunctionOpInterface::removeResultAttr (#129651)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Tue Mar 4 08:42:24 PST 2025
Author: Jeremy Kun
Date: 2025-03-04T08:42:20-08:00
New Revision: 43a1a337284703c9460d35a931f1b8c362c72a83
URL: https://github.com/llvm/llvm-project/commit/43a1a337284703c9460d35a931f1b8c362c72a83
DIFF: https://github.com/llvm/llvm-project/commit/43a1a337284703c9460d35a931f1b8c362c72a83.diff
LOG: [mlir] add StringRef override for FunctionOpInterface::removeResultAttr (#129651)
A mirror of the corresponding overload for `removeArgAttr(unsigned
index, ::llvm::StringRef name)`
[here](https://github.com/llvm/llvm-project/blob/41473162fd886d7db548fb288cf3620570f73c17/mlir/include/mlir/Interfaces/FunctionInterfaces.td#L451-L454)
Added:
Modified:
mlir/include/mlir/Interfaces/FunctionInterfaces.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/Interfaces/FunctionInterfaces.td b/mlir/include/mlir/Interfaces/FunctionInterfaces.td
index 697f951748c67..1e2ca9a8b4490 100644
--- a/mlir/include/mlir/Interfaces/FunctionInterfaces.td
+++ b/mlir/include/mlir/Interfaces/FunctionInterfaces.td
@@ -539,6 +539,10 @@ def FunctionOpInterface : OpInterface<"FunctionOpInterface", [
::mlir::Attribute removeResultAttr(unsigned index, ::mlir::StringAttr name) {
return ::mlir::function_interface_impl::removeResultAttr($_op, index, name);
}
+ ::mlir::Attribute removeResultAttr(unsigned index, ::llvm::StringRef name) {
+ return removeResultAttr(
+ index, ::mlir::StringAttr::get(this->getOperation()->getContext(), name));
+ }
/// Returns the dictionary attribute corresponding to the argument at
/// 'index'. If there are no argument attributes at 'index', a null
More information about the Mlir-commits
mailing list