Browse Source

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.
tags/v0.2.20^2
Martin Kroeker GitHub 8 years ago
parent
commit
09b240f1ef
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lapack-netlib/SRC/ztrevc3.f

+ 1
- 1
lapack-netlib/SRC/ztrevc3.f View File

@@ -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…
Cancel
Save