See post on the forum from Pauli Virtanen.
authorlangou <langou@users.noreply.github.com>
Sat, 12 Jul 2014 20:30:57 +0000 (20:30 +0000)
committerlangou <langou@users.noreply.github.com>
Sat, 12 Jul 2014 20:30:57 +0000 (20:30 +0000)
commita00738d270f323fa43dd61a3c7e9ca5dd977d76c
tree41f98079fa390f96640bd0954c09d21d53aafa38
parent2b911746d5d7173ccee0067a4ad09159cdfce1a2
See post on the forum from Pauli Virtanen.
http://icl.cs.utk.edu/lapack-forum/viewtopic.php?t=4560

Documentation of xSTEVR says that VL and VU are not referenced if RANGE = 'A'
or 'I', however the code does reference VL and VU for any value of RANGE:

      VLL = VL
      VUU = VU

So simply protect these two lines of code:

      IF( VALEIG ) THEN
         VLL = VL
         VUU = VU
      END IF

Julien.
SRC/dstevr.f
SRC/sstevr.f