From: Augustin Degomme Date: Sun, 27 Oct 2019 09:44:47 +0000 (+0100) Subject: remove useless (?) common block in fortran code as flang7 has problems compiling... X-Git-Tag: v3.25~480 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3ea760af6a8cb65c3a2250ecc65f47386b10f286 remove useless (?) common block in fortran code as flang7 has problems compiling it (see https://github.com/flang-compiler/flang/issues/671 ) --- diff --git a/teshsuite/smpi/mpich3-test/f77/util/mtestf.f b/teshsuite/smpi/mpich3-test/f77/util/mtestf.f index 2c54d76f5c..e3fd42f98d 100644 --- a/teshsuite/smpi/mpich3-test/f77/util/mtestf.f +++ b/teshsuite/smpi/mpich3-test/f77/util/mtestf.f @@ -14,7 +14,6 @@ C about out-of-order statements logical flag logical dbgflag integer wrank - common /mtest/ dbgflag, wrank call MPI_Initialized( flag, ierr ) if (.not. flag) then diff --git a/teshsuite/smpi/mpich3-test/f90/util/mtestf90.f90 b/teshsuite/smpi/mpich3-test/f90/util/mtestf90.f90 index bb12b29e24..0c1bf6d050 100644 --- a/teshsuite/smpi/mpich3-test/f90/util/mtestf90.f90 +++ b/teshsuite/smpi/mpich3-test/f90/util/mtestf90.f90 @@ -14,7 +14,6 @@ logical flag logical dbgflag integer wrank - common /mtest/ dbgflag, wrank call MPI_Initialized( flag, ierr ) if (.not. flag) then