compiler_rt: fix mulsi3 test typo

This commit is contained in:
Michael Dusan 2020-01-22 18:30:21 -05:00 committed by Andrew Kelley
parent a284be3f69
commit 357f42da6c

View File

@ -2,7 +2,7 @@
const builtin = @import("builtin");
const testing = @import("std").testing;
const maxInt = @import("std").math.maxInt;
const minInt = @import("std").math.maxInt;
const minInt = @import("std").math.minInt;
const udivmod = @import("udivmod.zig").udivmod;