Home
last modified time | relevance | path

Searched defs:TypeAttributeStorage (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/flang/lib/Optimizer/Dialect/
H A DFIRAttr.cpp55 struct TypeAttributeStorage : public mlir::AttributeStorage { struct
56 using KeyTy = mlir::Type;
58 TypeAttributeStorage(mlir::Type value) : value(value) { in TypeAttributeStorage() function
63 bool operator==(const KeyTy &key) const { return key == value; } in operator ==()
67 construct(mlir::AttributeStorageAllocator &allocator, KeyTy key) { in construct()
72 mlir::Type getType() const { return value; } in getType()
75 mlir::Type value;