Remove stray comma
This commit is contained in:
parent
ebe8882eb2
commit
fd3e2c8622
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue