We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ba4e77 commit b6e0cfcCopy full SHA for b6e0cfc
mlir/lib/IR/MLIRContext.cpp
@@ -213,6 +213,7 @@ class MLIRContextImpl {
213
StorageUniquer typeUniquer;
214
215
/// This is a mapping from type name to the abstract type describing it.
216
+ /// It is used by `AbstractType::lookup` to get an `AbstractType` from a name.
217
llvm::StringMap<AbstractType *> nameToType;
218
219
/// Cached Type Instances.
@@ -240,7 +241,8 @@ class MLIRContextImpl {
240
241
StorageUniquer attributeUniquer;
242
243
/// This is a mapping from attribute name to the abstract attribute describing
- /// it.
244
+ /// it. It is used by `AbstractType::lookup` to get an `AbstractType` from a
245
+ /// name.
246
llvm::StringMap<AbstractAttribute *> nameToAttribute;
247
248
/// Cached Attribute Instances.
0 commit comments