Remove stray comma

This commit is contained in:
Martin Kroeker 2019-01-17 09:42:12 +01:00 committed by GitHub
parent ebe8882eb2
commit fd3e2c8622
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" (x), // 1
"+r" (x) // 1
:
"r" (alpha), // 2
"r" (n2) // 3
@ -189,7 +189,7 @@ static void dscal_kernel_8_zero( BLASLONG n, FLOAT *alpha, FLOAT *x)
:
"+r" (n1), // 0
"+r" (x), // 1
"+r" (x) // 1
:
"r" (alpha), // 2
"r" (n2) // 3