master
1const common = @import("./common.zig");
2const testing = @import("std").testing;
3
4pub const panic = common.panic;
5
6comptime {
7 @export(&__subvdi3, .{ .name = "__subvdi3", .linkage = common.linkage, .visibility = common.visibility });
8}
9
10pub fn __subvdi3(a: i64, b: i64) callconv(.c) i64 {
11 const sum = a -% b;
12 // Overflow occurred iff the operands have opposite signs, and the sign of the
13 // sum is the opposite of the lhs sign.
14 if (((a ^ b) & (sum ^ a)) < 0) @panic("compiler-rt: integer overflow");
15 return sum;
16}
17
18test "subvdi3" {
19 // min i64 = -9223372036854775808
20 // max i64 = 9223372036854775807
21 // TODO write panic handler for testing panics
22 // try test__subvdi3(-9223372036854775808, -1, -1); // panic
23 // try test__addvdi3(9223372036854775807, 1, 1); // panic
24 try testing.expectEqual(-9223372036854775808, __subvdi3(-9223372036854775807, 1));
25 try testing.expectEqual(9223372036854775807, __subvdi3(9223372036854775806, -1));
26}