mirror of
https://github.com/ziglang/zig.git
synced 2026-01-11 09:55:12 +00:00
PPC targets can also use the functionality-equivalent standard routine, so unconditionally export the standard routine. Fixup of #16054 merged in f043071cdfb956ff16b1441c9d01ce43eea9fb7b.
26 lines
885 B
Zig
26 lines
885 B
Zig
const builtin = @import("builtin");
|
|
const common = @import("./common.zig");
|
|
const floatToInt = @import("./float_to_int.zig").floatToInt;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_windows_v2u64_abi) {
|
|
@export(__fixunstfti_windows_x86_64, .{ .name = "__fixunstfti", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
if (common.want_ppc_abi)
|
|
@export(__fixunstfti, .{ .name = "__fixunskfti", .linkage = common.linkage, .visibility = common.visibility });
|
|
@export(__fixunstfti, .{ .name = "__fixunstfti", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __fixunstfti(a: f128) callconv(.C) u128 {
|
|
return floatToInt(u128, a);
|
|
}
|
|
|
|
const v2u64 = @Vector(2, u64);
|
|
|
|
fn __fixunstfti_windows_x86_64(a: f128) callconv(.C) v2u64 {
|
|
return @bitCast(v2u64, floatToInt(u128, a));
|
|
}
|