Commit fdee558e45

Frank Denis <github@pureftpd.org>
2023-03-02 23:36:06
crypto.25519.field: de-inline _sq()
May fix #14764
1 parent aaaaab9
Changed files (1)
lib
std
crypto
25519
lib/std/crypto/25519/field.zig
@@ -287,7 +287,7 @@ pub const Fe = struct {
         return _carry128(&r);
     }
 
-    inline fn _sq(a: Fe, comptime double: bool) Fe {
+    fn _sq(a: Fe, comptime double: bool) Fe {
         var ax: [5]u128 = undefined;
         var r: [5]u128 = undefined;
         comptime var i = 0;