Skip to content

Fix #1127 - Add some EXTERNAL declaration in xLARF1L and xLARF1F #1133

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SRC/clarf1f.f
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ SUBROUTINE CLARF1F( SIDE, M, N, V, INCV, TAU, C, LDC, WORK )
INTEGER I, LASTV, LASTC
* ..
* .. External Subroutines ..
EXTERNAL CGEMV, CGER, CSCAL
EXTERNAL CAXPY, CGEMV, CGER, CSCAL
* ..
* .. Intrinsic Functions ..
INTRINSIC CONJG
Expand Down
2 changes: 1 addition & 1 deletion SRC/clarf1l.f
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ SUBROUTINE CLARF1L( SIDE, M, N, V, INCV, TAU, C, LDC, WORK )
INTEGER I, J, LASTV, LASTC, FIRSTV
* ..
* .. External Subroutines ..
EXTERNAL CGEMV, CGERC, CSCAL
EXTERNAL CAXPY, CGEMV, CGERC, CSCAL
* ..
* .. Intrinsic Functions ..
INTRINSIC CONJG
Expand Down
2 changes: 1 addition & 1 deletion SRC/dlarf1l.f
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ SUBROUTINE DLARF1L( SIDE, M, N, V, INCV, TAU, C, LDC, WORK )
INTEGER I, FIRSTV, LASTV, LASTC
* ..
* .. External Subroutines ..
EXTERNAL DGEMV, DGER
EXTERNAL DAXPY, DGEMV, DGER, DSCAL
* ..
* .. External Functions ..
LOGICAL LSAME
Expand Down
2 changes: 1 addition & 1 deletion SRC/zlarf1f.f
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ SUBROUTINE ZLARF1F( SIDE, M, N, V, INCV, TAU, C, LDC, WORK )
INTEGER I, LASTV, LASTC, J
* ..
* .. External Subroutines ..
EXTERNAL ZGEMV, ZGERC, ZSCAL
EXTERNAL ZAXPY, ZGEMV, ZGERC, ZSCAL
* .. Intrinsic Functions ..
INTRINSIC DCONJG
* ..
Expand Down
2 changes: 1 addition & 1 deletion SRC/zlarf1l.f
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ SUBROUTINE ZLARF1L( SIDE, M, N, V, INCV, TAU, C, LDC, WORK )
INTEGER I, J, LASTV, LASTC, FIRSTV
* ..
* .. External Subroutines ..
EXTERNAL ZGEMV, ZGERC, ZSCAL
EXTERNAL ZAXPY, ZGEMV, ZGERC, ZSCAL
* ..
* .. Intrinsic Functions ..
INTRINSIC DCONJG
Expand Down