Home
last modified time | relevance | path

Searched refs:IntTypeStorage (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/flang/include/flang/Optimizer/Dialect/
DFIRType.h46 struct IntTypeStorage;
123 : public mlir::Type::TypeBase<IntType, mlir::Type, detail::IntTypeStorage> {
/external/llvm-project/flang/lib/Optimizer/Dialect/
DFIRType.cpp472 struct IntTypeStorage : public mlir::TypeStorage { struct
479 static IntTypeStorage *construct(mlir::TypeStorageAllocator &allocator, in construct() argument
481 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