1
1

Fix another warning (using a variable before it was initialized.)

Thanks Jeff for pointing this out.

This commit was SVN r18489.
Этот коммит содержится в:
Rolf vandeVaart 2008-05-23 13:57:55 +00:00
родитель 0d8faf7559
Коммит 5baa733ad5

Просмотреть файл

@ -124,12 +124,12 @@ ompi_coll_tuned_alltoallv_intra_basic_linear(void *sbuf, int *scounts, int *sdis
mca_coll_tuned_module_t *tuned_module = (mca_coll_tuned_module_t*) module;
mca_coll_tuned_comm_t *data = tuned_module->tuned_data;
ORTE_OUTPUT((ompi_coll_tuned_stream,
"coll:tuned:alltoallv_intra_basic_linear rank %d", rank));
size = ompi_comm_size(comm);
rank = ompi_comm_rank(comm);
ORTE_OUTPUT((ompi_coll_tuned_stream,
"coll:tuned:alltoallv_intra_basic_linear rank %d", rank));
ompi_ddt_type_extent(sdtype, &sext);
ompi_ddt_type_extent(rdtype, &rext);