Skip to content

Commit 5cc096f

Browse files
committed
Update SymbolInterfaces.td
1 parent dc337a5 commit 5cc096f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

mlir/include/mlir/IR/SymbolInterfaces.td

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def SymbolUserOpInterface : OpInterface<"SymbolUserOpInterface"> {
210210
This interface describes an operation that may use a `Symbol`. This
211211
interface allows for users of symbols to hook into verification and other
212212
symbol related utilities that are either costly or otherwise disallowed
213-
within a traditional operation.
213+
within an operation.
214214
}];
215215
let cppNamespace = "::mlir";
216216

@@ -227,7 +227,8 @@ def SymbolUserAttrInterface : AttrInterface<"SymbolUserAttrInterface"> {
227227
This interface describes an attribute that may use a `Symbol`. This
228228
interface allows for users of symbols to hook into verification and other
229229
symbol related utilities that are either costly or otherwise disallowed
230-
within an operation.
230+
within an operation (e.g., recreating symbol users per op verified rather
231+
than per symbol table, or querying symbols usage of sibblings).
231232
}];
232233
let cppNamespace = "::mlir";
233234

0 commit comments

Comments
 (0)