mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
27 lines
726 B
Zig
27 lines
726 B
Zig
const common = @import("./common.zig");
|
|
const truncf = @import("./truncf.zig").truncf;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_ppc_abi) {
|
|
@export(__trunckfsf2, .{ .name = "__trunckfsf2", .linkage = common.linkage });
|
|
} else if (common.want_sparc_abi) {
|
|
@export(_Qp_qtos, .{ .name = "_Qp_qtos", .linkage = common.linkage });
|
|
} else {
|
|
@export(__trunctfsf2, .{ .name = "__trunctfsf2", .linkage = common.linkage });
|
|
}
|
|
}
|
|
|
|
pub fn __trunctfsf2(a: f128) callconv(.C) f32 {
|
|
return truncf(f32, f128, a);
|
|
}
|
|
|
|
fn __trunckfsf2(a: f128) callconv(.C) f32 {
|
|
return truncf(f32, f128, a);
|
|
}
|
|
|
|
fn _Qp_qtos(a: *const f128) callconv(.C) f32 {
|
|
return truncf(f32, f128, a.*);
|
|
}
|