From db1c2a58c4847b198c240222ed73639151f5cf78 Mon Sep 17 00:00:00 2001 From: Bill D'Amico Date: Fri, 23 Feb 2007 18:55:41 +0000 Subject: [PATCH] Removed cruft - unused variables causing warnings during OMPI build. This commit was SVN r13772. --- ompi/mca/coll/basic/coll_basic_allgather.c | 3 +-- ompi/mca/coll/tuned/coll_tuned_allgather.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/ompi/mca/coll/basic/coll_basic_allgather.c b/ompi/mca/coll/basic/coll_basic_allgather.c index e1204e7548..58d06ef269 100644 --- a/ompi/mca/coll/basic/coll_basic_allgather.c +++ b/ompi/mca/coll/basic/coll_basic_allgather.c @@ -44,8 +44,7 @@ mca_coll_basic_allgather_intra(void *sbuf, int scount, struct ompi_communicator_t *comm) { int err; - char *rbuf_original = NULL, *inplace_temp = NULL; - ptrdiff_t true_lb, true_extent, lb, extent; + ptrdiff_t lb, extent; /* Handle MPI_IN_PLACE (see explanantion in reduce.c for how to allocate temp buffer) -- note that rank 0 can use IN_PLACE diff --git a/ompi/mca/coll/tuned/coll_tuned_allgather.c b/ompi/mca/coll/tuned/coll_tuned_allgather.c index 663d457886..b9d4393c9a 100644 --- a/ompi/mca/coll/tuned/coll_tuned_allgather.c +++ b/ompi/mca/coll/tuned/coll_tuned_allgather.c @@ -697,8 +697,7 @@ ompi_coll_tuned_allgather_intra_basic_linear(void *sbuf, int scount, struct ompi_communicator_t *comm) { int err; - char *rbuf_original = NULL, *inplace_temp = NULL; - ptrdiff_t true_lb, true_extent, lb, extent; + ptrdiff_t lb, extent; /* Handle MPI_IN_PLACE (see explanantion in reduce.c for how to allocate temp buffer) -- note that rank 0 can use IN_PLACE