SP ARM64 ASM: fix sp_256_mont_dbl_4

In sp_256_mont_dbl_4, not all used registers were in asm clobber list.
This commit is contained in:
Sean Parkinson
2023-09-18 15:17:39 +10:00
parent 1f2ddb7554
commit ea8bc82f85

View File

@@ -23108,7 +23108,7 @@ static void sp_256_mont_dbl_4(sp_digit* r, const sp_digit* a, const sp_digit* m)
"stp x11, x12, [%[r],16]\n\t"
:
: [r] "r" (r), [a] "r" (a)
: "memory", "x3", "x4", "x5", "x6", "x7", "x8", "x13", "cc"
: "memory", "x3", "x4", "x5", "x6", "x7", "x8", "x13", "x9", "x10", "x11", "x12", "cc"
);
(void)m;