mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
Adds conditional exports - __fixkfti - __fixunskfti - __floattikf - __negkf2 - __mulkc3 - __divkc3 - __powikf2 and adjusts tools/gen_stubs.zig. From https://gcc.gnu.org/onlinedocs/gcc/Floating-Types.html: "When long double transitions to __float128 on PowerPC in the future, __ibm128 will remain for use in conversions between the two types." Hence `__extendkftf2` and `__trunctfkf2` for conversion are superfluous and only using f128 for `kf` routines is justified. Closes #16057.
17 lines
621 B
Zig
17 lines
621 B
Zig
const common = @import("./common.zig");
|
|
const divc3 = @import("./divc3.zig");
|
|
const Complex = @import("./mulc3.zig").Complex;
|
|
|
|
comptime {
|
|
if (@import("builtin").zig_backend != .stage2_c) {
|
|
if (common.want_ppc_abi) {
|
|
@export(__divtc3, .{ .name = "__divkc3", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(__divtc3, .{ .name = "__divtc3", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn __divtc3(a: f128, b: f128, c: f128, d: f128) callconv(.C) Complex(f128) {
|
|
return divc3.divc3(f128, a, b, c, d);
|
|
}
|