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:
Martin Kroeker 2017-02-22 08:40:39 +01:00 committed by GitHub
parent 09b240f1ef
commit 0958b49811
2 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@
EXTERNAL LSAME, SLAMCH, SLANSB, ILAENV
* ..
* .. External Subroutines ..
EXTERNAL SLASCL, SSCAL, SSTEQR, SSTERF, XERBLA
EXTERNAL SLASCL, SSCAL, SSTEQR, SSTERF, XERBLA,
$ SSYTRD_SB2ST
* ..
* .. Intrinsic Functions ..

View File

@ -247,7 +247,7 @@
EXTERNAL LSAME, DLAMCH, ZLANHB, ILAENV
* ..
* .. External Subroutines ..
EXTERNAL DSCAL, DSTERF, XERBLA, ZLASCL, ZSTEQR
EXTERNAL DSCAL, DSTERF, XERBLA, ZLASCL, ZSTEQR,
$ ZHETRD_2STAGE
* ..
* .. Intrinsic Functions ..