fix couple of dead assignment warnings

This commit is contained in:
Andrew 2017-12-22 00:56:35 +01:00
parent bfc2a88594
commit 47deec2c1a
2 changed files with 4 additions and 4 deletions

View File

@ -218,9 +218,9 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
buffer = (FLOAT *)blas_memory_alloc(1); buffer = (FLOAT *)blas_memory_alloc(1);
#ifdef SMP #ifdef SMP
nthreads = num_cpu_avail(2); /* nthreads = num_cpu_avail(2);
/*FIXME trmv_thread was found to be broken, see issue 1332 */ FIXME trmv_thread was found to be broken, see issue 1332 */
nthreads = 1; nthreads = 1;
if (nthreads == 1) { if (nthreads == 1) {

View File

@ -113,8 +113,8 @@ int CNAME(BLASLONG m, BLASLONG n, FLOAT *a, BLASLONG lda, BLASLONG posX, BLASLON
#else #else
data01 = *(ao1 + 0); data01 = *(ao1 + 0);
data02 = *(ao1 + 1); data02 = *(ao1 + 1);
data03 = *(ao1 + 2); /* data03 = *(ao1 + 2);
data04 = *(ao1 + 3); data04 = *(ao1 + 3); */
data05 = *(ao2 + 0); data05 = *(ao2 + 0);
data06 = *(ao2 + 1); data06 = *(ao2 + 1);
data07 = *(ao2 + 2); data07 = *(ao2 + 2);