zig/std/special/compiler_rt/fixunstfsi.zig
Andrew Kelley 6a98bf3dba compiler_rt implementations for __fixuns* functions
* add u128 and i128 integer types
 * add f128 floating point type
 * implement big integer multiplication (See #405)
2017-08-16 19:07:35 -04:00

10 lines
189 B
Zig

const fixuint = @import("fixuint.zig").fixuint;
export fn __fixunstfsi(a: f128) -> u32 {
return fixuint(f128, u32, a);
}
test "fixunstfsi" {
_ = @import("fixunstfsi_test.zig");
}