fix couple of dead assignment warnings
authorAndrew <bradatajs@yahoo.com>
Thu, 21 Dec 2017 23:56:35 +0000 (00:56 +0100)
committerAndrew <bradatajs@yahoo.com>
Thu, 21 Dec 2017 23:56:35 +0000 (00:56 +0100)
interface/trmv.c
kernel/generic/ztrmm_uncopy_2.c

index 7d17dc6..7c40ae9 100644 (file)
@@ -218,9 +218,9 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo,
   buffer = (FLOAT *)blas_memory_alloc(1);
 
 #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;
   
   if (nthreads == 1) {
index 5cb0ffc..7eb433d 100644 (file)
@@ -113,8 +113,8 @@ int CNAME(BLASLONG m, BLASLONG n, FLOAT *a, BLASLONG lda, BLASLONG posX, BLASLON
 #else
              data01 = *(ao1 + 0);
              data02 = *(ao1 + 1);
-             data03 = *(ao1 + 2);
-             data04 = *(ao1 + 3);
+             /* data03 = *(ao1 + 2);
+             data04 = *(ao1 + 3); */
              data05 = *(ao2 + 0);
              data06 = *(ao2 + 1);
              data07 = *(ao2 + 2);