Fix declaration of input arguments in inline assembly

Argument 0 is modified as it doubles as a counter
This commit is contained in:
Martin Kroeker 2019-02-12 15:51:43 +01:00 committed by GitHub
parent dc6ac9eab0
commit 91481a3e4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -136,8 +136,8 @@ static void dscal_kernel_inc_8(BLASLONG n, FLOAT *alpha, FLOAT *x, BLASLONG inc_
"jnz 1b \n\t"
:
"+r" (n) // 0
:
"r" (n), // 0
"r" (x), // 1
"r" (x1), // 2
"r" (alpha), // 3