The loop fusion transformation moves the body of a do-loop statement in another do-loop statement.
Example 63:
DO I=1,N PRINT *,I ENDDO DO I=1,N A[I] = F(I)+1 ENDDO
DO I=1,N PRINT *,I A[I] = F(I)+1 ENDDO