Browse Source

Merge pull request #4754 from martin-frbg/issue4750-2

Add a clobber list to the arm64 SVE DOT kernel
tags/v0.3.28^2
Martin Kroeker GitHub 1 year ago
parent
commit
8bc37f9384
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      kernel/arm64/dot_kernel_sve.c

+ 6
- 1
kernel/arm64/dot_kernel_sve.c 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;
}

Loading…
Cancel
Save