From 8fc53a20a2b374bc558d882ee27d951c4a8af61a Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Tue, 20 Mar 2018 11:12:37 +0100
Subject: [PATCH] Remove unused code reported by sonarqube

---
 coreblas/compute/core_zhe2ge.c              | 18 ++----------------
 runtime/starpu/control/runtime_descriptor.c |  3 ---
 2 files changed, 2 insertions(+), 19 deletions(-)

diff --git a/coreblas/compute/core_zhe2ge.c b/coreblas/compute/core_zhe2ge.c
index c4b5f785a..df2d6225a 100644
--- a/coreblas/compute/core_zhe2ge.c
+++ b/coreblas/compute/core_zhe2ge.c
@@ -39,9 +39,8 @@ void CORE_zhe2ge(MORSE_enum uplo, int M, int N,
     MORSE_Complex64_t *Bptr, *BTptr;
     int i, j;
 
-    Aptr  = A;
-    Bptr  = B;
-    BTptr = B;
+    Aptr = A;
+    Bptr = B;
 
     if (uplo == MorseLower){
         for (j = 0; j < N; j++){
@@ -57,23 +56,10 @@ void CORE_zhe2ge(MORSE_enum uplo, int M, int N,
             }
             Aptr += (LDA - i + j + 1);
             Bptr += (LDB - i + j + 1);
-
-            /* Bptr[ j * LDB + j ] = A[ j * LDA + j ]; */
-
-            /* for (i = j+1; i < M; i++) { */
-            /*     Bptr [ j * LDB + i ] = A[ j * LDA + i ]; */
-            /*     BTptr[ i * LDB + j ] = conj(A[ j * LDA + i ]); */
-            /* } */
         }
     }
     else{
         for (j = 0; j < N; j++){
-            /* for (i = 0; i < j; i++) { */
-            /*     Bptr [ j * LDB + i ] = A[ j * LDA + i ]; */
-            /*     BTptr[ i * LDB + j ] = conj(A[ j * LDA + i ]); */
-            /* } */
-            /* Bptr[ j * LDB + j ] = A[ j * LDA + j ]; */
-
             BTptr = B + j;
             for (i = 0; i < j; i++, Bptr++, Aptr++, BTptr += LDB) {
                 *Bptr  = *Aptr;
diff --git a/runtime/starpu/control/runtime_descriptor.c b/runtime/starpu/control/runtime_descriptor.c
index bd804a02c..8c3990103 100644
--- a/runtime/starpu/control/runtime_descriptor.c
+++ b/runtime/starpu/control/runtime_descriptor.c
@@ -145,8 +145,6 @@ void RUNTIME_desc_create( MORSE_desc_t *desc )
 {
     int64_t lmt = desc->lmt;
     int64_t lnt = desc->lnt;
-    starpu_data_handle_t *tiles;
-    (void)tiles;
 
     desc->occurences = 1;
 
@@ -156,7 +154,6 @@ void RUNTIME_desc_create( MORSE_desc_t *desc )
      */
     desc->schedopt = (void*)calloc(lnt*lmt,sizeof(starpu_data_handle_t));
     assert(desc->schedopt);
-    tiles = (starpu_data_handle_t*)(desc->schedopt);
 
 #if defined(CHAMELEON_USE_CUDA) && !defined(CHAMELEON_SIMULATION)
     /*
-- 
GitLab