Remove unguarded use of _Atomic and fix tabbing
This commit is contained in:
parent
bb9876db33
commit
8ec28ff461
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue