mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
c99c085d70
The purpose of this branch is to switch to using an object file for each independent function, in order to make linking simpler - instead of relying on `-ffunction-sections` and `--gc-sections`, which involves the linker doing the work of linking everything and then undoing work via garbage collection, this will allow the linker to only include the compilation units that are depended on in the first place. This commit makes progress towards that goal.
13 lines
299 B
Zig
13 lines
299 B
Zig
const common = @import("./common.zig");
|
|
const trunc_f80 = @import("./truncf.zig").trunc_f80;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
@export(__truncxfsf2, .{ .name = "__truncxfsf2", .linkage = common.linkage });
|
|
}
|
|
|
|
fn __truncxfsf2(a: f80) callconv(.C) f32 {
|
|
return trunc_f80(f32, a);
|
|
}
|