Bug in new ?syswapr function was found.
The LDA is not passed to ?SYSWAPR (from ?SYTRI2X suboutine) where A is A(N,N), this causes trashing of the matrix.
For example :
SUBROUTINE SSYSWAPR( UPLO, N, A, I1, I2)
* .. Scalar Arguments ..
CHARACTER UPLO
INTEGER I1, I2, N
* .. Array Arguments ..
REAL A(N,N)
The problem appears when we use matrix A(LDA,N). The case is not checked by testsuite, where in ?DRVSY always LDA = MAX( 1, N ).
Please pay your attention on this problem

