mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
21 lines
571 B
Zig
21 lines
571 B
Zig
const common = @import("./common.zig");
|
|
const truncf = @import("./truncf.zig").truncf;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_aeabi) {
|
|
@export(__aeabi_d2h, .{ .name = "__aeabi_d2h", .linkage = common.linkage });
|
|
} else {
|
|
@export(__truncdfhf2, .{ .name = "__truncdfhf2", .linkage = common.linkage });
|
|
}
|
|
}
|
|
|
|
pub fn __truncdfhf2(a: f64) callconv(.C) common.F16T {
|
|
return @bitCast(common.F16T, truncf(f16, f64, a));
|
|
}
|
|
|
|
fn __aeabi_d2h(a: f64) callconv(.AAPCS) u16 {
|
|
return @bitCast(common.F16T, truncf(f16, f64, a));
|
|
}
|