Remove unguarded use of _Atomic and fix tabbing

This commit is contained in:
Martin Kroeker 2018-04-04 22:40:30 +02:00 committed by GitHub
parent bb9876db33
commit 8ec28ff461
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 10 deletions

View File

@ -237,10 +237,9 @@ static int inner_advanced_thread(blas_arg_t *args, BLASLONG *range_m, BLASLONG *
blasint *ipiv = (blasint *)args -> c; blasint *ipiv = (blasint *)args -> c;
//_Atomic
BLASLONG jw; BLASLONG jw;
_Atomic BLASLONG *flag = (_Atomic BLASLONG *)args -> d; volatile BLASLONG *flag = (volatile BLASLONG *)args -> d;
if (args -> a == NULL) { if (args -> a == NULL) {
TRSM_ILTCOPY(k, k, (FLOAT *)args -> b, lda, 0, sb); TRSM_ILTCOPY(k, k, (FLOAT *)args -> b, lda, 0, sb);