From bbc610339814908e68d221748dffdbd8d8ec4f09 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 16 Jun 2022 15:14:12 -0700 Subject: compiler-rt: fix tests --- lib/compiler_rt/floatuntidf.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/compiler_rt/floatuntidf.zig') diff --git a/lib/compiler_rt/floatuntidf.zig b/lib/compiler_rt/floatuntidf.zig index 5b35379d38..a77a952fe9 100644 --- a/lib/compiler_rt/floatuntidf.zig +++ b/lib/compiler_rt/floatuntidf.zig @@ -7,6 +7,6 @@ comptime { @export(__floatuntidf, .{ .name = "__floatuntidf", .linkage = common.linkage }); } -fn __floatuntidf(a: u128) callconv(.C) f64 { +pub fn __floatuntidf(a: u128) callconv(.C) f64 { return intToFloat(f64, a); } -- cgit v1.2.3