Remove stray comma

This commit is contained in:
Martin Kroeker 2019-01-17 09:39:23 +01:00 committed by GitHub
parent 90e2866518
commit b8dd71bddc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -117,7 +117,7 @@ static void cscal_kernel_16( BLASLONG n, FLOAT *alpha, FLOAT *x)
: :
"+r" (n), // 0 "+r" (n), // 0
"+r" (x), // 1 "+r" (x) // 1
: :
"r" (alpha) // 2 "r" (alpha) // 2
: "cc", : "cc",
@ -209,7 +209,7 @@ static void cscal_kernel_16_zero_r( BLASLONG n, FLOAT *alpha, FLOAT *x)
: :
"+r" (n), // 0 "+r" (n), // 0
"+r" (x), // 1 "+r" (x) // 1
: :
"r" (alpha) // 2 "r" (alpha) // 2
: "cc", // "0", "1", : "cc", // "0", "1",
@ -286,7 +286,7 @@ static void cscal_kernel_16_zero_i( BLASLONG n, FLOAT *alpha, FLOAT *x)
: :
"+r" (n), // 0 "+r" (n), // 0
"+r" (x), // 1 "+r" (x) // 1
: :
"r" (alpha) // 2 "r" (alpha) // 2
: "cc", //"%0", "%1", : "cc", //"%0", "%1",
@ -331,7 +331,7 @@ static void cscal_kernel_16_zero( BLASLONG n, FLOAT *alpha, FLOAT *x)
: :
"+r" (n), // 0 "+r" (n), // 0
"+r" (x), // 1 "+r" (x) // 1
: :
"r" (alpha) // 2 "r" (alpha) // 2
: "cc", : "cc",