Searched refs:IntTypeStorage (Results 1 – 2 of 2) sorted by relevance
46 struct IntTypeStorage;123 : public mlir::Type::TypeBase<IntType, mlir::Type, detail::IntTypeStorage> {
472 struct IntTypeStorage : public mlir::TypeStorage { struct479 static IntTypeStorage *construct(mlir::TypeStorageAllocator &allocator, in construct() argument481 auto *storage = allocator.allocate<IntTypeStorage>(); in construct()482 return new (storage) IntTypeStorage{kind}; in construct()491 IntTypeStorage() = delete;492 explicit IntTypeStorage(KindTy kind) : kind{kind} {} in IntTypeStorage() function