[fir] Remove getModel<Fortran::ISO::CFI_dim_t> in DescriptorModel.h

A windows buildbot complains about previous definiton after D112961.

Remove the extra definition until we can figure out if really needed.
This commit is contained in:
Valentin Clement 2021-11-05 20:49:09 +01:00
parent e69f6476a8
commit d75ab7d548
No known key found for this signature in database
GPG Key ID: 086D54783C928776
1 changed files with 0 additions and 7 deletions

View File

@ -87,13 +87,6 @@ TypeBuilderFunc getModel<Fortran::ISO::CFI_type_t>() {
};
}
template <>
TypeBuilderFunc getModel<Fortran::ISO::CFI_index_t>() {
return [](mlir::MLIRContext *context) -> mlir::Type {
return mlir::IntegerType::get(context,
sizeof(Fortran::ISO::CFI_index_t) * 8);
};
}
template <>
TypeBuilderFunc getModel<Fortran::ISO::CFI_dim_t>() {
return [](mlir::MLIRContext *context) -> mlir::Type {
auto indexTy = getModel<Fortran::ISO::CFI_index_t>()(context);