2022-06-30 08:02:00 +01:00
|
|
|
const common = @import("./common.zig");
|
|
|
|
|
|
|
|
pub const panic = common.panic;
|
|
|
|
|
|
|
|
comptime {
|
|
|
|
if (common.want_aeabi) {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__aeabi_fneg, .{ .name = "__aeabi_fneg", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-30 08:02:00 +01:00
|
|
|
} else {
|
2022-12-28 13:57:17 +00:00
|
|
|
@export(__negsf2, .{ .name = "__negsf2", .linkage = common.linkage, .visibility = common.visibility });
|
2022-06-30 08:02:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn __negsf2(a: f32) callconv(.C) f32 {
|
|
|
|
return common.fneg(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn __aeabi_fneg(a: f32) callconv(.AAPCS) f32 {
|
|
|
|
return common.fneg(a);
|
|
|
|
}
|