Fix potential bounds error (Reference-LAPACK PR 1018)

This commit is contained in:
Martin Kroeker
2024-05-23 23:08:27 +02:00
committed by GitHub
parent 700ea74a37
commit e2c1a1e269

View File

@@ -420,7 +420,7 @@
*
JBTEMP2 = JB - 2
DO J = JB, JB+JNB-2
DO I = J-JBTEMP2, NB
DO I = J-JBTEMP2, MIN( NB, N )
T( I, J ) = CZERO
END DO
END DO
@@ -436,4 +436,4 @@
*
* End of CUNHR_COL
*
END
END