From: Arnaud Giersch Date: Wed, 27 Nov 2019 08:46:51 +0000 (+0100) Subject: Fix doubled semicolons. X-Git-Tag: v3.25~351^2~2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/9dca29757b5d8add4a2719c28f620686e7132556 Fix doubled semicolons. --- diff --git a/src/smpi/bindings/smpi_pmpi_coll.cpp b/src/smpi/bindings/smpi_pmpi_coll.cpp index e4a607654d..2a0a7458ab 100644 --- a/src/smpi/bindings/smpi_pmpi_coll.cpp +++ b/src/smpi/bindings/smpi_pmpi_coll.cpp @@ -544,7 +544,7 @@ int PMPI_Iscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datat smpi_bench_end(); int rank = simgrid::s4u::this_actor::get_pid(); std::unique_ptr tmp_sendbuf; - const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, count, datatype);; + const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, count, datatype); TRACE_smpi_comm_in(rank, request == MPI_REQUEST_IGNORED ? "PMPI_Scan" : "PMPI_Iscan", new simgrid::instr::Pt2PtTIData(request == MPI_REQUEST_IGNORED ? "scan" : "iscan", -1, @@ -584,7 +584,7 @@ int PMPI_Iexscan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype dat smpi_bench_end(); int rank = simgrid::s4u::this_actor::get_pid(); std::unique_ptr tmp_sendbuf; - const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, count, datatype);; + const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, count, datatype); TRACE_smpi_comm_in(rank, request == MPI_REQUEST_IGNORED ? "PMPI_Exscan" : "PMPI_Iexscan", new simgrid::instr::Pt2PtTIData(request == MPI_REQUEST_IGNORED ? "exscan" : "iexscan", -1, @@ -638,7 +638,7 @@ int PMPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int *recvcoun totalcount += recvcounts[i]; } std::unique_ptr tmp_sendbuf; - const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, totalcount, datatype);; + const void* real_sendbuf = smpi_get_in_place_buf(sendbuf, recvbuf, tmp_sendbuf, totalcount, datatype); TRACE_smpi_comm_in(rank, request == MPI_REQUEST_IGNORED ? "PMPI_Reduce_scatter" : "PMPI_Ireduce_scatter", new simgrid::instr::VarCollTIData( diff --git a/teshsuite/smpi/mpich3-test/comm/comm_idup_iallreduce.c b/teshsuite/smpi/mpich3-test/comm/comm_idup_iallreduce.c index 46be1e945d..b507a9b666 100644 --- a/teshsuite/smpi/mpich3-test/comm/comm_idup_iallreduce.c +++ b/teshsuite/smpi/mpich3-test/comm/comm_idup_iallreduce.c @@ -113,7 +113,7 @@ int main(int argc, char **argv) } /* Test Iallreduce */ if (sol != out) - errs++;; + errs++; /* Test new communicator */ errs += MTestTestComm(newcomm); @@ -132,7 +132,7 @@ int main(int argc, char **argv) } /* Test Iallreduce */ if (sol != out) - errs++;; + errs++; /* Test new communicator */ errs += MTestTestComm(newcomm); @@ -149,7 +149,7 @@ int main(int argc, char **argv) if (sol != out) - errs++;; + errs++; /* Test new inter communicator */ errs += MTestTestComm(newcomm); MPI_Comm_free(&newcomm); @@ -167,7 +167,7 @@ int main(int argc, char **argv) } /* Test Iallreduce resutls for split-communicator */ if (sol != out) - errs++;; + errs++; /* Test new inter-communicator */ errs += MTestTestComm(newcomm); @@ -190,7 +190,7 @@ int main(int argc, char **argv) if (sol != out) - errs++;; + errs++; /* Test new communicator */ errs += MTestTestComm(newcomm); MPI_Comm_free(&newcomm);