mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
bb8971150c
This is just a cosmetic change. The goal is to keep the export logic relatively flat and centralized.
22 lines
641 B
Zig
22 lines
641 B
Zig
const builtin = @import("builtin");
|
|
const common = @import("./common.zig");
|
|
const intToFloat = @import("./int_to_float.zig").intToFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_windows_v2u64_abi) {
|
|
@export(__floatuntisf_windows_x86_64, .{ .name = "__floatuntisf", .linkage = common.linkage });
|
|
} else {
|
|
@export(__floatuntisf, .{ .name = "__floatuntisf", .linkage = common.linkage });
|
|
}
|
|
}
|
|
|
|
pub fn __floatuntisf(a: u128) callconv(.C) f32 {
|
|
return intToFloat(f32, a);
|
|
}
|
|
|
|
fn __floatuntisf_windows_x86_64(a: @Vector(2, u64)) callconv(.C) f32 {
|
|
return intToFloat(f32, @bitCast(u128, a));
|
|
}
|