Skip to content
Snippets Groups Projects
Commit 3e279c9f authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Use explicit type kind to prevent warning.

* gfortran warns about passing variables to C when not using a type kind
  known to be interoperable.
parent 13790e25
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,7 @@ MODULE xt_ut
c_long, c_short, c_long_long, c_ptr, c_loc
USE xt_core, ONLY : xt_int_kind
USE xt_mpi, ONLY: xt_mpi_fint_kind
IMPLICIT NONE
PRIVATE
......@@ -163,22 +164,27 @@ MODULE xt_ut
END INTERFACE
INTERFACE
INTEGER FUNCTION xt_ut_init_transposition_simple(itemplate, datatype) &
BIND(C, name='xt_ut_init_transposition_simple')
FUNCTION xt_ut_init_transposition_simple(itemplate, datatype) &
BIND(C, name='xt_ut_init_transposition_simple') RESULT(rc)
IMPORT :: xt_mpi_fint_kind
IMPLICIT NONE
INTEGER, VALUE, INTENT(in) :: itemplate
INTEGER, VALUE, INTENT(in) :: datatype
INTEGER(xt_mpi_fint_kind) :: rc
INTEGER(xt_mpi_fint_kind), VALUE, INTENT(in) :: itemplate
INTEGER(xt_mpi_fint_kind), VALUE, INTENT(in) :: datatype
END FUNCTION xt_ut_init_transposition_simple
END INTERFACE
INTERFACE
INTEGER FUNCTION xt_ut_init_transposition(itemplate, offset_in, &
FUNCTION xt_ut_init_transposition(itemplate, offset_in, &
offset_in_size, offset_out, offset_out_size, &
& datatype) BIND(C, name='xt_ut_init_transposition')
& datatype) BIND(C, name='xt_ut_init_transposition') RESULT(rc)
IMPORT :: xt_mpi_fint_kind
IMPLICIT NONE
INTEGER, VALUE, INTENT(in) :: itemplate, offset_in_size, offset_out_size
INTEGER, DIMENSION(*), INTENT(in) :: offset_in, offset_out
INTEGER, VALUE, INTENT(in) :: datatype
INTEGER(xt_mpi_fint_kind) :: rc
INTEGER(xt_mpi_fint_kind), VALUE, INTENT(in) :: itemplate, &
offset_in_size, offset_out_size
INTEGER(xt_mpi_fint_kind), INTENT(in) :: offset_in(*), offset_out(*)
INTEGER(xt_mpi_fint_kind), VALUE, INTENT(in) :: datatype
END FUNCTION xt_ut_init_transposition
END INTERFACE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment