mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 16:45:27 +00:00
50339f595a
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
21 lines
602 B
Zig
21 lines
602 B
Zig
const common = @import("./common.zig");
|
|
const floatFromInt = @import("./float_from_int.zig").floatFromInt;
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_aeabi) {
|
|
@export(__aeabi_i2d, .{ .name = "__aeabi_i2d", .linkage = common.linkage, .visibility = common.visibility });
|
|
} else {
|
|
@export(__floatsidf, .{ .name = "__floatsidf", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
}
|
|
|
|
pub fn __floatsidf(a: i32) callconv(.C) f64 {
|
|
return floatFromInt(f64, a);
|
|
}
|
|
|
|
fn __aeabi_i2d(a: i32) callconv(.AAPCS) f64 {
|
|
return floatFromInt(f64, a);
|
|
}
|