authorgravatar for michael.dusan@gmail.comMichael Dusan <michael.dusan@gmail.com> 2020-01-22 18:30:21-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-01-22 20:17:38-05:00
log357f42da6c2f158fff2afa28a56b7e0e7a8a5963
tree9b3d6a81d27efec1b993bfc0225e08682ad29276
parenta284be3f69aabb13ad64753e03601169e8292a24

compiler_rt: fix mulsi3 test typo


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/special/compiler_rt/int.zig+1-1
...@@ -2,7 +2,7 @@...@@ -2,7 +2,7 @@
2const builtin = @import("builtin");2const builtin = @import("builtin");
3const testing = @import("std").testing;3const testing = @import("std").testing;
4const maxInt = @import("std").math.maxInt;4const maxInt = @import("std").math.maxInt;
5const minInt = @import("std").math.maxInt;5const minInt = @import("std").math.minInt;
66
7const udivmod = @import("udivmod.zig").udivmod;7const udivmod = @import("udivmod.zig").udivmod;
88