Browse Source

Set visibility of internal symbols to hidden

pull/3658/head
Martin Kroeker GitHub 3 years ago
parent
commit
1a52cbf9ea
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      driver/level2/tpmv_thread.c

+ 5
- 1
driver/level2/tpmv_thread.c View File

@@ -234,7 +234,11 @@ static int tpmv_kernel(blas_arg_t *args, BLASLONG *range_m, BLASLONG *range_n, F
return 0;
}

int CNAME(BLASLONG m, FLOAT *a, FLOAT *x, BLASLONG incx, FLOAT *buffer, int nthreads){
int
#ifndef C_MSVC
__attribute__((visibility("hidden")))
#endif
CNAME(BLASLONG m, FLOAT *a, FLOAT *x, BLASLONG incx, FLOAT *buffer, int nthreads){

blas_arg_t args;
blas_queue_t queue[MAX_CPU_NUMBER];


Loading…
Cancel
Save