Skip to content

Commit 09b240f

Browse files
authored
Fix missing comma on continued line
EXTERNAL declaration of subroutines missed a comma before the continuation line, causing a strange run-together name to appear in the object when compiled with ifort.
1 parent 69f4e8b commit 09b240f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lapack-netlib/SRC/ztrevc3.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ SUBROUTINE ZTREVC3( SIDE, HOWMNY, SELECT, N, T, LDT, VL, LDVL, VR,
287287
EXTERNAL LSAME, ILAENV, IZAMAX, DLAMCH, DZASUM
288288
* ..
289289
* .. External Subroutines ..
290-
EXTERNAL XERBLA, ZCOPY, ZDSCAL, ZGEMV, ZLATRS
290+
EXTERNAL XERBLA, ZCOPY, ZDSCAL, ZGEMV, ZLATRS,
291291
$ ZGEMM, DLABAD, ZLASET
292292
* ..
293293
* .. Intrinsic Functions ..

0 commit comments

Comments
 (0)