We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e69f647 commit d75ab7dCopy full SHA for d75ab7d
flang/lib/Optimizer/CodeGen/DescriptorModel.h
@@ -87,13 +87,6 @@ TypeBuilderFunc getModel<Fortran::ISO::CFI_type_t>() {
87
};
88
}
89
template <>
90
-TypeBuilderFunc getModel<Fortran::ISO::CFI_index_t>() {
91
- return [](mlir::MLIRContext *context) -> mlir::Type {
92
- return mlir::IntegerType::get(context,
93
- sizeof(Fortran::ISO::CFI_index_t) * 8);
94
- };
95
-}
96
-template <>
97
TypeBuilderFunc getModel<Fortran::ISO::CFI_dim_t>() {
98
return [](mlir::MLIRContext *context) -> mlir::Type {
99
auto indexTy = getModel<Fortran::ISO::CFI_index_t>()(context);
0 commit comments