authorgravatar for 124872+jedisct1@users.noreply.github.comFrank Denis <124872+jedisct1@users.noreply.github.com> 2023-03-02 23:36:06+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-03-03 07:51:23-05:00
logfdee558e45e4587aa5345b0de531a9b56a8682fd
treebaedf44a87475c6b74d7add9680451b930c44a79
parentaaaaab9ec2d5d6a4c1ed2b7171bd6f599f7a31ce

crypto.25519.field: de-inline _sq()

May fix #14764

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/crypto/25519/field.zig+1-1
......@@ -287,7 +287,7 @@ pub const Fe = struct {
287287 return _carry128(&r);
288288 }
289289
290 inline fn _sq(a: Fe, comptime double: bool) Fe {
290 fn _sq(a: Fe, comptime double: bool) Fe {
291291 var ax: [5]u128 = undefined;
292292 var r: [5]u128 = undefined;
293293 comptime var i = 0;