Browse Source

Initialize abs_mask1 with itself to silence a gcc warning

tags/v0.3.18
Martin Kroeker GitHub 4 years ago
parent
commit
8dfa61a61c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/x86_64/zasum_microk_skylakex-2.c

+ 1
- 1
kernel/x86_64/zasum_microk_skylakex-2.c View File

@@ -16,7 +16,7 @@ static FLOAT zasum_kernel(BLASLONG n, FLOAT *x)

if (n2 < 32) {
__m128d accum_10, accum_11, accum_12, accum_13;
__m128d abs_mask1;
__m128d abs_mask1 = abs_mask1;

accum_10 = _mm_setzero_pd();
accum_11 = _mm_setzero_pd();


Loading…
Cancel
Save