Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use more conventional loop constructs.
[simgrid.git] / src / smpi / colls / reduce-scatter-gather.c
index 19c67947a13bf489dd560d06baf00b4146f997a2..af317fb9679bf367e48e74998c19c669f4b4bab0 100644 (file)
@@ -216,7 +216,7 @@ int smpi_coll_tuned_reduce_scatter_gather(void *sendbuf, void *recvbuf,
   }
 
 
-  else if (count >= comm_size) {
+  else /* (count >= comm_size) */ {
     tmp_buf = (void *) xbt_malloc(count * extent);
 
     //if ((rank != root))