mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
23 lines
729 B
TeX
23 lines
729 B
TeX
\pagebreak
|
|
\begin{fortranspecific}[4ex]
|
|
\section{Fortran Restrictions on the \kcode{do} Construct}
|
|
\label{sec:fort_do}
|
|
\index{constructs!do@\kcode{do}}
|
|
\index{do construct@\kcode{do} construct}
|
|
|
|
If an \kcode{end do} directive follows a \plc{do-construct} in which several
|
|
\bcode{DO} statements share a \bcode{DO} termination statement, then a \kcode{do}
|
|
directive can only be specified for the outermost of these \bcode{DO} statements.
|
|
The following example contains correct usages of
|
|
\kcode{do} constructs:
|
|
|
|
\fnexample{fort_do}{1}
|
|
|
|
The following example is non-conforming because the matching \kcode{do} directive
|
|
for the \kcode{end do} does not precede the outermost loop:
|
|
|
|
\fnexample{fort_do}{2}
|
|
\end{fortranspecific}
|
|
|
|
|