Fix declaration of assembly arguments in SSYMV and DSYMV microkernels

Arguments 0 and 1 are both input and output
This commit is contained in:
Martin Kroeker
2019-02-12 16:00:18 +01:00
committed by GitHub
parent 91481a3e4e
commit b824fa70eb
8 changed files with 24 additions and 24 deletions
+3 -3
View File
@@ -90,9 +90,9 @@ static void ssymv_kernel_4x4(BLASLONG n, FLOAT *a0, FLOAT *a1, FLOAT *a2, FLOAT
"vmovss %%xmm3 ,12(%9) \n\t" // save temp2
:
:
"r" (i), // 0
"r" (n), // 1
"+r" (i), // 0
"+r" (n) // 1
:
"r" (x), // 2
"r" (y), // 3
"r" (a0), // 4