This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via 3410143edbaf193e34d4ecb583b6df43007fa06f (commit) from e50245c2b5a40e26877127f6ba4dd21fc5895f1a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/3410143edbaf193e34d4ecb583b6df4300... commit 3410143edbaf193e34d4ecb583b6df43007fa06f Author: Charles J Archer <[email protected]> Date: Tue Feb 16 21:53:30 2016 -0800 binding/mpif_h: size common block 9 appropriately * gcc gives a warning (under -flto): setbot.c:213:24: warning: type of ‘mpifcmb9_’ does not match original declaration setbotf.f:16:20: note: previously declared here * icc gives a duplicate symbol warning/error (under -ipo) for mpifcmb9_ The default size, chosen by the compiler, was not correct for a common block with 64 bit gcc/icc. This patch types common block 9 to be an integer, and the compiler errors/warnings go away. This leads me to believe that the types are right-sized. Signed-off-by: Ken Raffenetti <[email protected]> diff --git a/src/binding/fortran/mpif_h/setbotf.f.in b/src/binding/fortran/mpif_h/setbotf.f.in index 706aebf..2fafdac 100644 --- a/src/binding/fortran/mpif_h/setbotf.f.in +++ b/src/binding/fortran/mpif_h/setbotf.f.in @@ -8,8 +8,8 @@ parameter (mpi_status_size=@MPI_STATUS_SIZE@) ! STATUS_IGNORE, STATUSES_IGNORE integer si(mpi_status_size), ssi(mpi_status_size,1) -! BOTTOM, IN_PLACE, UNWEIGHTED, ERRCODES_IGNORE - integer bt, ip, uw, ecsi(1) +! BOTTOM, IN_PLACE, UNWEIGHTED, WEIGHTED, ERRCODES_IGNORE + integer bt, ip, uw, we, ecsi(1) ! ARGVS_NULL, ARGV_NULL character*1 asn(1,1), an(1) common /MPIFCMB5/ uw ----------------------------------------------------------------------- Summary of changes: src/binding/fortran/mpif_h/setbotf.f.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- MPICH primary repository