[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2b4-209-gf127799
Service Account
noreply at mpich.org
Fri Sep 4 10:52:10 CDT 2015
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 f12779988838ca5cb19788d08f2cd86d258e0cfd (commit)
from 9adc7dde6262e02ce6e545e6a414949a88e234af (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/f12779988838ca5cb19788d08f2cd86d258e0cfd
commit f12779988838ca5cb19788d08f2cd86d258e0cfd
Author: Rob Latham <robl at mcs.anl.gov>
Date: Fri Sep 4 10:52:06 2015 -0500
clang finds a few shadowed and unused declarations
No Reviewer
diff --git a/src/mpi/romio/adio/ad_gpfs/ad_gpfs_wrcoll.c b/src/mpi/romio/adio/ad_gpfs/ad_gpfs_wrcoll.c
index 3781a3c..acb6d1e 100644
--- a/src/mpi/romio/adio/ad_gpfs/ad_gpfs_wrcoll.c
+++ b/src/mpi/romio/adio/ad_gpfs/ad_gpfs_wrcoll.c
@@ -388,7 +388,7 @@ void ADIOI_GPFS_WriteStridedColl(ADIO_File fd, const void *buf, int count,
*
* First verify that the filetype is contig and the offsets are
* increasing in rank order*/
- int i, inOrderAndNoGaps = 1;
+ int inOrderAndNoGaps = 1;
for (i=0;i<(nprocs-1);i++) {
if (end_offsets[i] != (st_offsets[i+1]-1))
inOrderAndNoGaps = 0;
diff --git a/src/mpi/romio/adio/common/onesided_aggregation.c b/src/mpi/romio/adio/common/onesided_aggregation.c
index db67cf5..305e0f7 100644
--- a/src/mpi/romio/adio/common/onesided_aggregation.c
+++ b/src/mpi/romio/adio/common/onesided_aggregation.c
@@ -2010,7 +2010,7 @@ printf("iAmUsedAgg - currentRoundFDStart initialized "
sourceAggDataTypes = (MPI_Datatype *)ADIOI_Malloc(maxNumContigOperations * sizeof(MPI_Datatype));
if (!bufTypeIsContig) {
int k;
- for (i=sourceAggsForMyDataFirstOffLenIndex[roundIter][aggIter];i<=sourceAggsForMyDataLastOffLenIndex[roundIter][aggIter];k++)
+ for (k=sourceAggsForMyDataFirstOffLenIndex[roundIter][aggIter];k<=sourceAggsForMyDataLastOffLenIndex[roundIter][aggIter];k++)
amountOfDataReadThisRoundAgg += len_list[k];
#ifdef onesidedtrace
-----------------------------------------------------------------------
Summary of changes:
src/mpi/romio/adio/ad_gpfs/ad_gpfs_wrcoll.c | 2 +-
src/mpi/romio/adio/common/onesided_aggregation.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list