1
1

Fixed CID 807: Remove unused variable

This commit was SVN r19239.
Этот коммит содержится в:
Jeff Squyres 2008-08-11 20:50:09 +00:00
родитель 9b14ee6d83
Коммит 93746cd594

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

@ -43,7 +43,7 @@ int MPI_Type_create_subarray(int ndims,
{ {
MPI_Datatype last_type; MPI_Datatype last_type;
int32_t i, step, start_loop, end_loop; int32_t i, step, end_loop;
MPI_Aint size, displ, extent; MPI_Aint size, displ, extent;
MEMCHECKER( MEMCHECKER(
@ -88,11 +88,11 @@ int MPI_Type_create_subarray(int ndims,
} }
if( MPI_ORDER_C == order ) { if( MPI_ORDER_C == order ) {
start_loop = i = ndims - 1; i = ndims - 1;
step = -1; step = -1;
end_loop = -1; end_loop = -1;
} else { } else {
start_loop = i = 0; i = 0;
step = 1; step = 1;
end_loop = ndims; end_loop = ndims;
} }