zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit fdee558e45e4587aa5345b0de531a9b56a8682fd (tree)
parent aaaaab9ec2d5d6a4c1ed2b7171bd6f599f7a31ce
Author: Frank Denis <github@pureftpd.org>
Date:   Thu,  2 Mar 2023 23:36:06 +0100

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

May fix #14764

Diffstat:
Mlib/std/crypto/25519/field.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/crypto/25519/field.zig b/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;