Skip to content

Commit d3bdf89

Browse files
authored
Update SymbolInterfaces.td
1 parent 2fec0b1 commit d3bdf89

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
@@ -208,7 +208,7 @@ def SymbolUserOpInterface : OpInterface<"SymbolUserOpInterface"> {
208208
This interface describes an operation that may use a `Symbol`. This
209209
interface allows for users of symbols to hook into verification and other
210210
symbol related utilities that are either costly or otherwise disallowed
211-
within a traditional operation.
211+
within an operation.
212212
}];
213213
let cppNamespace = "::mlir";
214214

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

0 commit comments

Comments
 (0)