From 9181ecd95133b42da75c6c5e8456830d93a9f7a9 Mon Sep 17 00:00:00 2001 From: Carl Ã…stholm Date: Sun, 18 Feb 2024 13:17:48 +0100 Subject: Sema: fix runtime call of inline fn with comptime-known comptime-only ret type --- lib/std/math/nextafter.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/std') diff --git a/lib/std/math/nextafter.zig b/lib/std/math/nextafter.zig index 6780d6089f..717cbf4700 100644 --- a/lib/std/math/nextafter.zig +++ b/lib/std/math/nextafter.zig @@ -144,7 +144,7 @@ test "int" { } test "float" { - @setEvalBranchQuota(2000); + @setEvalBranchQuota(3000); // normal -> normal try expect(nextAfter(f16, 0x1.234p0, 2.0) == 0x1.238p0); -- cgit v1.2.3