Add quick return for N < 1 (Reference-LAPACK PR 837)
This commit is contained in:
parent
7796068930
commit
447368783a
|
@ -382,6 +382,11 @@
|
||||||
$ 1537 /
|
$ 1537 /
|
||||||
* ..
|
* ..
|
||||||
* .. Executable Statements ..
|
* .. Executable Statements ..
|
||||||
|
*
|
||||||
|
* Quick return for N < 1
|
||||||
|
IF ( N < 1 ) THEN
|
||||||
|
RETURN
|
||||||
|
END IF
|
||||||
*
|
*
|
||||||
I1 = ISEED( 1 )
|
I1 = ISEED( 1 )
|
||||||
I2 = ISEED( 2 )
|
I2 = ISEED( 2 )
|
||||||
|
|
|
@ -382,6 +382,11 @@
|
||||||
$ 1537 /
|
$ 1537 /
|
||||||
* ..
|
* ..
|
||||||
* .. Executable Statements ..
|
* .. Executable Statements ..
|
||||||
|
*
|
||||||
|
* Quick return for N < 1
|
||||||
|
IF ( N < 1 ) THEN
|
||||||
|
RETURN
|
||||||
|
END IF
|
||||||
*
|
*
|
||||||
I1 = ISEED( 1 )
|
I1 = ISEED( 1 )
|
||||||
I2 = ISEED( 2 )
|
I2 = ISEED( 2 )
|
||||||
|
|
Loading…
Reference in New Issue