Skip to content

Commit 8b24458

Browse files
authored
Merge pull request #1133 from langou/fix_1127__missing_external_declartion_in_larf1f_and_larf1l
Fix #1127 - Add some EXTERNAL declaration in xLARF1L and xLARF1F
2 parents 8282ae9 + aed00bf commit 8b24458

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

SRC/clarf1f.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ SUBROUTINE CLARF1F( SIDE, M, N, V, INCV, TAU, C, LDC, WORK )
149149
INTEGER I, LASTV, LASTC
150150
* ..
151151
* .. External Subroutines ..
152-
EXTERNAL CGEMV, CGER, CSCAL
152+
EXTERNAL CAXPY, CGEMV, CGER, CSCAL
153153
* ..
154154
* .. Intrinsic Functions ..
155155
INTRINSIC CONJG

SRC/clarf1l.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ SUBROUTINE CLARF1L( SIDE, M, N, V, INCV, TAU, C, LDC, WORK )
150150
INTEGER I, J, LASTV, LASTC, FIRSTV
151151
* ..
152152
* .. External Subroutines ..
153-
EXTERNAL CGEMV, CGERC, CSCAL
153+
EXTERNAL CAXPY, CGEMV, CGERC, CSCAL
154154
* ..
155155
* .. Intrinsic Functions ..
156156
INTRINSIC CONJG

SRC/dlarf1l.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ SUBROUTINE DLARF1L( SIDE, M, N, V, INCV, TAU, C, LDC, WORK )
146146
INTEGER I, FIRSTV, LASTV, LASTC
147147
* ..
148148
* .. External Subroutines ..
149-
EXTERNAL DGEMV, DGER
149+
EXTERNAL DAXPY, DGEMV, DGER, DSCAL
150150
* ..
151151
* .. External Functions ..
152152
LOGICAL LSAME

SRC/zlarf1f.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ SUBROUTINE ZLARF1F( SIDE, M, N, V, INCV, TAU, C, LDC, WORK )
180180
INTEGER I, LASTV, LASTC, J
181181
* ..
182182
* .. External Subroutines ..
183-
EXTERNAL ZGEMV, ZGERC, ZSCAL
183+
EXTERNAL ZAXPY, ZGEMV, ZGERC, ZSCAL
184184
* .. Intrinsic Functions ..
185185
INTRINSIC DCONJG
186186
* ..

SRC/zlarf1l.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ SUBROUTINE ZLARF1L( SIDE, M, N, V, INCV, TAU, C, LDC, WORK )
153153
INTEGER I, J, LASTV, LASTC, FIRSTV
154154
* ..
155155
* .. External Subroutines ..
156-
EXTERNAL ZGEMV, ZGERC, ZSCAL
156+
EXTERNAL ZAXPY, ZGEMV, ZGERC, ZSCAL
157157
* ..
158158
* .. Intrinsic Functions ..
159159
INTRINSIC DCONJG

0 commit comments

Comments
 (0)