Skip to content

Commit

Permalink
Merge pull request #4754 from martin-frbg/issue4750-2
Browse files Browse the repository at this point in the history
Add a clobber list to the arm64 SVE DOT kernel
  • Loading branch information
martin-frbg authored Jun 15, 2024
2 parents fdb88e0 + 3d8054f commit 8bc37f9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion kernel/arm64/dot_kernel_sve.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 8bc37f9

Please sign in to comment.