Skip to content

Commit c3cf019

Browse files
tgross35bjorn3
andauthored
fixup! 8cb74d0
Co-authored-by: bjorn3 <[email protected]>
1 parent 8cb74d0 commit c3cf019

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testcrate/tests/addsub.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ mod int_addsub {
4444
use compiler_builtins::int::addsub::{$fn_add, $fn_sub};
4545

4646
fuzz_2(N, |x: $i, y: $i| {
47-
let (add0, add_o0)= x.overflowing_add(y);
48-
let (sub0, sub_o0)= x.overflowing_sub(y);
47+
let (add0, add_o0) = x.overflowing_add(y);
48+
let (sub0, sub_o0) = x.overflowing_sub(y);
4949
let mut add_o1 = 0;
5050
let mut sub_o1 = 0;
5151
let add1: $i = $fn_add(x, y, &mut add_o1);

0 commit comments

Comments
 (0)