We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e48399 commit 64bcbdaCopy full SHA for 64bcbda
lib/compiler_rt/int_from_float.zig
@@ -77,7 +77,7 @@ pub inline fn bigIntFromFloat(comptime signedness: std.builtin.Signedness, resul
77
const exponent = @max(parts.exponent - significand_bits_adjusted_to_handle_smin, 0);
78
const int: I = @intFromFloat(switch (exponent) {
79
0 => a,
80
- else => math.ldexp(parts.significand, significand_bits_adjusted_to_handle_smin),
+ else => @call(.never_inline, math.ldexp, .{ parts.significand, significand_bits_adjusted_to_handle_smin }), // https://github.com/llvm/llvm-project/issues/130408
81
});
82
switch (signedness) {
83
.signed => {
0 commit comments