Skip to content

Commit 7900bc9

Browse files
committed
comments unified: 'End of' comment: added where omitted
1 parent 831899b commit 7900bc9

File tree

130 files changed

+467
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+467
-8
lines changed

BLAS/SRC/caxpy.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,7 @@ SUBROUTINE CAXPY(N,CA,CX,INCX,CY,INCY)
136136
END IF
137137
*
138138
RETURN
139+
*
140+
* End of CAXPY
141+
*
139142
END

BLAS/SRC/ccopy.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,7 @@ SUBROUTINE CCOPY(N,CX,INCX,CY,INCY)
122122
END DO
123123
END IF
124124
RETURN
125+
*
126+
* End of CCOPY
127+
*
125128
END

BLAS/SRC/cdotc.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,7 @@ COMPLEX FUNCTION CDOTC(N,CX,INCX,CY,INCY)
131131
END IF
132132
CDOTC = CTEMP
133133
RETURN
134+
*
135+
* End of CDOTC
136+
*
134137
END

BLAS/SRC/cdotu.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,7 @@ COMPLEX FUNCTION CDOTU(N,CX,INCX,CY,INCY)
128128
END IF
129129
CDOTU = CTEMP
130130
RETURN
131+
*
132+
* End of CDOTU
133+
*
131134
END

BLAS/SRC/crotg.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,7 @@ SUBROUTINE CROTG(CA,CB,C,S)
9494
CA = ALPHA*NORM
9595
END IF
9696
RETURN
97+
*
98+
* End of CROTG
99+
*
97100
END

BLAS/SRC/cscal.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,7 @@ SUBROUTINE CSCAL(N,CA,CX,INCX)
114114
END DO
115115
END IF
116116
RETURN
117+
*
118+
* End of CSCAL
119+
*
117120
END

BLAS/SRC/csrot.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,7 @@ SUBROUTINE CSROT( N, CX, INCX, CY, INCY, C, S )
150150
END DO
151151
END IF
152152
RETURN
153+
*
154+
* End of CSROT
155+
*
153156
END

BLAS/SRC/csscal.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,7 @@ SUBROUTINE CSSCAL(N,SA,CX,INCX)
117117
END DO
118118
END IF
119119
RETURN
120+
*
121+
* End of CSSCAL
122+
*
120123
END

BLAS/SRC/cswap.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,7 @@ SUBROUTINE CSWAP(N,CX,INCX,CY,INCY)
126126
END DO
127127
END IF
128128
RETURN
129+
*
130+
* End of CSWAP
131+
*
129132
END

BLAS/SRC/dasum.f

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,7 @@ DOUBLE PRECISION FUNCTION DASUM(N,DX,INCX)
128128
END IF
129129
DASUM = DTEMP
130130
RETURN
131+
*
132+
* End of DASUM
133+
*
131134
END

0 commit comments

Comments
 (0)