Fix uninitialized M in quick return (Reference-LAPACK 769)
This commit is contained in:
parent
9307b0fabc
commit
00cc78cfba
|
@ -381,6 +381,7 @@
|
||||||
* .. Executable Statements ..
|
* .. Executable Statements ..
|
||||||
*
|
*
|
||||||
INFO = 0
|
INFO = 0
|
||||||
|
M = 0
|
||||||
*
|
*
|
||||||
* Quick return if possible
|
* Quick return if possible
|
||||||
*
|
*
|
||||||
|
@ -424,14 +425,9 @@
|
||||||
END IF
|
END IF
|
||||||
|
|
||||||
* Initialize error flags
|
* Initialize error flags
|
||||||
INFO = 0
|
|
||||||
NCNVRG = .FALSE.
|
NCNVRG = .FALSE.
|
||||||
TOOFEW = .FALSE.
|
TOOFEW = .FALSE.
|
||||||
|
|
||||||
* Quick return if possible
|
|
||||||
M = 0
|
|
||||||
IF( N.EQ.0 ) RETURN
|
|
||||||
|
|
||||||
* Simplification:
|
* Simplification:
|
||||||
IF( IRANGE.EQ.INDRNG .AND. IL.EQ.1 .AND. IU.EQ.N ) IRANGE = 1
|
IF( IRANGE.EQ.INDRNG .AND. IL.EQ.1 .AND. IU.EQ.N ) IRANGE = 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue