Home
last modified time | relevance | path

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

/external/llvm-project/flang/lib/Optimizer/Dialect/
DFIRType.cpp55 mlir::Type ofTy; in parseBox() local
56 if (parser.parseLess() || parser.parseType(ofTy)) { in parseBox()
71 return BoxType::get(ofTy, map); in parseBox()
802 mlir::Type ofTy) { in construct()
803 assert(ofTy && "descriptor type is null"); in construct()
805 return new (storage) TypeDescTypeStorage{ofTy}; in construct()
809 mlir::Type getOfType() const { return ofTy; } in getOfType()
812 mlir::Type ofTy; member
816 explicit TypeDescTypeStorage(mlir::Type ofTy) : ofTy{ofTy} {} in TypeDescTypeStorage()