1
1

Arf. Don't output the body of the WTICK or WTIME functions in the

module header if we're not doing small.

This commit was SVN r10475.
Этот коммит содержится в:
Jeff Squyres 2006-06-22 13:20:01 +00:00
родитель 67b07ba4fc
Коммит 9a679644c2
2 изменённых файлов: 12 добавлений и 4 удалений

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

@ -57,23 +57,27 @@ EOF
# equivalents
start MPI_Wtick small
cat <<EOF
if test "$output" = "1"; then
cat <<EOF
function MPI_Wtick()
double precision MPI_Wtick
end function MPI_Wtick
EOF
fi
end MPI_Wtick
start MPI_Wtime small
cat <<EOF
if test "$output" = "1"; then
cat <<EOF
function MPI_Wtime()
double precision MPI_Wtime
end function MPI_Wtime
EOF
fi
end MPI_Wtime
#------------------------------------------------------------------------

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

@ -653,23 +653,27 @@ allranks="0 $ranks"
# equivalents
start MPI_Wtick small
cat <<EOF
if test "$output" = "1"; then
cat <<EOF
function MPI_Wtick()
double precision MPI_Wtick
end function MPI_Wtick
EOF
fi
end MPI_Wtick
start MPI_Wtime small
cat <<EOF
if test "$output" = "1"; then
cat <<EOF
function MPI_Wtime()
double precision MPI_Wtime
end function MPI_Wtime
EOF
fi
end MPI_Wtime
#------------------------------------------------------------------------