zig/lib/compiler_rt/floatdixf.zig

13 lines
346 B
Zig
Raw Normal View History

const common = @import("./common.zig");
const floatFromInt = @import("./float_from_int.zig").floatFromInt;
pub const panic = common.panic;
comptime {
@export(__floatdixf, .{ .name = "__floatdixf", .linkage = common.linkage, .visibility = common.visibility });
}
fn __floatdixf(a: i64) callconv(.C) f80 {
return floatFromInt(f80, a);
}