}
void fir::BoxProcType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getEleTy() << '>';
+ printer << "<" << getEleTy() << '>';
}
mlir::LogicalResult
}
void fir::BoxType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getEleTy();
+ printer << "<" << getEleTy();
if (auto map = getLayoutMap()) {
printer << ", " << map;
}
}
void fir::BoxCharType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getKind() << ">";
+ printer << "<" << getKind() << ">";
}
CharacterType
}
void fir::CharacterType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getFKind();
+ printer << "<" << getFKind();
auto len = getLen();
if (len != fir::CharacterType::singleton()) {
printer << ',';
}
void fir::ComplexType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getFKind() << '>';
+ printer << "<" << getFKind() << '>';
}
mlir::Type fir::ComplexType::getElementType() const {
}
void fir::HeapType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getEleTy() << '>';
+ printer << "<" << getEleTy() << '>';
}
mlir::LogicalResult
}
void fir::IntegerType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getFKind() << '>';
+ printer << "<" << getFKind() << '>';
}
//===----------------------------------------------------------------------===//
}
void fir::LogicalType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getFKind() << '>';
+ printer << "<" << getFKind() << '>';
}
//===----------------------------------------------------------------------===//
}
void fir::PointerType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getEleTy() << '>';
+ printer << "<" << getEleTy() << '>';
}
mlir::LogicalResult fir::PointerType::verify(
}
void fir::RealType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getFKind() << '>';
+ printer << "<" << getFKind() << '>';
}
mlir::LogicalResult
}
void fir::RecordType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getName();
+ printer << "<" << getName();
if (!recordTypeVisited.count(uniqueKey())) {
recordTypeVisited.insert(uniqueKey());
if (getLenParamList().size()) {
}
void fir::ReferenceType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getEleTy() << '>';
+ printer << "<" << getEleTy() << '>';
}
mlir::LogicalResult fir::ReferenceType::verify(
}
void fir::SequenceType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic();
auto shape = getShape();
if (shape.size()) {
printer << '<';
}
void fir::ShapeType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getImpl()->rank << ">";
+ printer << "<" << getImpl()->rank << ">";
}
//===----------------------------------------------------------------------===//
}
void fir::ShapeShiftType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getRank() << ">";
+ printer << "<" << getRank() << ">";
}
//===----------------------------------------------------------------------===//
}
void fir::ShiftType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getRank() << ">";
+ printer << "<" << getRank() << ">";
}
//===----------------------------------------------------------------------===//
}
void fir::SliceType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getRank() << '>';
+ printer << "<" << getRank() << '>';
}
//===----------------------------------------------------------------------===//
}
void fir::TypeDescType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getOfTy() << '>';
+ printer << "<" << getOfTy() << '>';
}
mlir::LogicalResult fir::TypeDescType::verify(
}
void fir::VectorType::print(mlir::DialectAsmPrinter &printer) const {
- printer << getMnemonic() << "<" << getLen() << ':' << getEleTy() << '>';
+ printer << "<" << getLen() << ':' << getEleTy() << '>';
}
mlir::LogicalResult fir::VectorType::verify(