add clobber list

This commit is contained in:
Martin Kroeker 2024-06-14 22:07:44 +02:00 committed by GitHub
parent fdb88e010f
commit 3d8054fb16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions

View File

@ -108,7 +108,12 @@ dot_kernel_sve(BLASLONG n, FLOAT* x, FLOAT* y)
[N_] "r" (n),
[X_] "r" (x),
[Y_] "r" (y)
:);
: "cc",
"memory",
"x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7",
"x8", "x9", "x10", "x11", "x12", "x13", "d1",
"z0", "z1"
);
return ret;
}