forked from OSchip/llvm-project
[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:
parent
e69f6476a8
commit
d75ab7d548
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue