Remove stray comma

This commit is contained in:
Martin Kroeker 2019-01-17 09:41:27 +01:00 committed by GitHub
parent 8c9a6356ea
commit ebe8882eb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ static void dscal_kernel_8( BLASLONG n, FLOAT *alpha, FLOAT *x)
: :
"+r" (n1), // 0 "+r" (n1), // 0
"+r" (x), // 1 "+r" (x) // 1
: :
"r" (alpha), // 2 "r" (alpha), // 2
"r" (n2) // 3 "r" (n2) // 3
@ -189,7 +189,7 @@ static void dscal_kernel_8_zero( BLASLONG n, FLOAT *alpha, FLOAT *x)
: :
"+r" (n1), // 0 "+r" (n1), // 0
"+r" (x), // 1 "+r" (x) // 1
: :
"r" (alpha), // 2 "r" (alpha), // 2
"r" (n2) // 3 "r" (n2) // 3