mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 23:52:31 +00:00
bb8971150c
This is just a cosmetic change. The goal is to keep the export logic relatively flat and centralized.
25 lines
721 B
Zig
25 lines
721 B
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
const udivmod = @import("udivmod.zig").udivmod;
|
|
const common = @import("common.zig");
|
|
|
|
pub const panic = common.panic;
|
|
|
|
comptime {
|
|
if (common.want_windows_v2u64_abi) {
|
|
@export(__udivti3_windows_x86_64, .{ .name = "__udivti3", .linkage = common.linkage });
|
|
} else {
|
|
@export(__udivti3, .{ .name = "__udivti3", .linkage = common.linkage });
|
|
}
|
|
}
|
|
|
|
pub fn __udivti3(a: u128, b: u128) callconv(.C) u128 {
|
|
return udivmod(u128, a, b, null);
|
|
}
|
|
|
|
const v2u64 = @Vector(2, u64);
|
|
|
|
fn __udivti3_windows_x86_64(a: v2u64, b: v2u64) callconv(.C) v2u64 {
|
|
return @bitCast(v2u64, udivmod(u128, @bitCast(u128, a), @bitCast(u128, b), null));
|
|
}
|