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
316 B
Zig
13 lines
316 B
Zig
const common = @import("./common.zig");
|
|
const intToFloat = @import("./int_to_float.zig").intToFloat;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
@export(__floatuntixf, .{ .name = "__floatuntixf", .linkage = common.linkage });
|
|
}
|
|
|
|
pub fn __floatuntixf(a: u128) callconv(.C) f80 {
|
|
return intToFloat(f80, a);
|
|
}
|