We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cb74d0 commit c3cf019Copy full SHA for c3cf019
testcrate/tests/addsub.rs
@@ -44,8 +44,8 @@ mod int_addsub {
44
use compiler_builtins::int::addsub::{$fn_add, $fn_sub};
45
46
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);
+ let (add0, add_o0) = x.overflowing_add(y);
+ let (sub0, sub_o0) = x.overflowing_sub(y);
49
let mut add_o1 = 0;
50
let mut sub_o1 = 0;
51
let add1: $i = $fn_add(x, y, &mut add_o1);
0 commit comments