zig/lib/std/special/compiler_rt/fixdfsi.zig
Andrew Kelley a2ff3a13fe std, compiler-rt: remove test names where applicable
Tests with no names are executed when using `zig test` regardless of the
`--test-filter` used. Non-named tests should be used when simply
importing unit tests from another file. This allows `zig test` to find
all the appropriate tests, even when using `--test-filter`.
2021-09-01 17:54:06 -07:00

17 lines
399 B
Zig

const fixint = @import("fixint.zig").fixint;
const builtin = @import("builtin");
pub fn __fixdfsi(a: f64) callconv(.C) i32 {
@setRuntimeSafety(builtin.is_test);
return fixint(f64, i32, a);
}
pub fn __aeabi_d2iz(a: f64) callconv(.AAPCS) i32 {
@setRuntimeSafety(false);
return @call(.{ .modifier = .always_inline }, __fixdfsi, .{a});
}
test {
_ = @import("fixdfsi_test.zig");
}