diff options
author | Martin Kroeker <martin@ruby.chemie.uni-freiburg.de> | 2017-02-22 09:04:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-22 09:04:33 +0100 |
commit | eabc74a2e9e42cc6b7fdbc7630a24ca8d656c7b4 (patch) | |
tree | dde08bff3da80e2f256457e1d6d133c666b8dc20 | |
parent | 6a229fb1ef741e429b921d303545c1e6526eccd4 (diff) | |
download | lapack-eabc74a2e9e42cc6b7fdbc7630a24ca8d656c7b4.tar.gz lapack-eabc74a2e9e42cc6b7fdbc7630a24ca8d656c7b4.tar.bz2 lapack-eabc74a2e9e42cc6b7fdbc7630a24ca8d656c7b4.zip |
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.
-rw-r--r-- | SRC/chbev_2stage.f | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SRC/chbev_2stage.f b/SRC/chbev_2stage.f index ff115062..5ced8c97 100644 --- a/SRC/chbev_2stage.f +++ b/SRC/chbev_2stage.f @@ -247,7 +247,7 @@ EXTERNAL LSAME, SLAMCH, CLANHB, ILAENV * .. * .. External Subroutines .. - EXTERNAL SSCAL, SSTERF, XERBLA, CLASCL, CSTEQR + EXTERNAL SSCAL, SSTERF, XERBLA, CLASCL, CSTEQR, $ CHETRD_2STAGE * .. * .. Intrinsic Functions .. |