Skip to content

Commit e072e68

Browse files
authored
Fix missing comma in 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 e527dbf commit e072e68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lapack-netlib/SRC/chbev_2stage.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ SUBROUTINE CHBEV_2STAGE( JOBZ, UPLO, N, KD, AB, LDAB, W, Z, LDZ,
247247
EXTERNAL LSAME, SLAMCH, CLANHB, ILAENV
248248
* ..
249249
* .. External Subroutines ..
250-
EXTERNAL SSCAL, SSTERF, XERBLA, CLASCL, CSTEQR
250+
EXTERNAL SSCAL, SSTERF, XERBLA, CLASCL, CSTEQR,
251251
$ CHETRD_2STAGE
252252
* ..
253253
* .. Intrinsic Functions ..

0 commit comments

Comments
 (0)