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.
This commit is contained in:
parent
69f4e8b86c
commit
09b240f1ef
|
@ -287,7 +287,7 @@
|
||||||
EXTERNAL LSAME, ILAENV, IZAMAX, DLAMCH, DZASUM
|
EXTERNAL LSAME, ILAENV, IZAMAX, DLAMCH, DZASUM
|
||||||
* ..
|
* ..
|
||||||
* .. External Subroutines ..
|
* .. External Subroutines ..
|
||||||
EXTERNAL XERBLA, ZCOPY, ZDSCAL, ZGEMV, ZLATRS
|
EXTERNAL XERBLA, ZCOPY, ZDSCAL, ZGEMV, ZLATRS,
|
||||||
$ ZGEMM, DLABAD, ZLASET
|
$ ZGEMM, DLABAD, ZLASET
|
||||||
* ..
|
* ..
|
||||||
* .. Intrinsic Functions ..
|
* .. Intrinsic Functions ..
|
||||||
|
|
Loading…
Reference in New Issue