Skip to content

Commit 6144db9

Browse files
committed
cargo fmt
1 parent a23a413 commit 6144db9

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

builtins-test/tests/lse.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ test_op!(add, |left, right| left.wrapping_add(right));
8888
test_op!(clr, |left, right| left & !right);
8989
test_op!(xor, std::ops::BitXor::bitxor);
9090
test_op!(or, std::ops::BitOr::bitor);
91-
use compiler_builtins::foreach_bytes;
92-
use compiler_builtins::foreach_ordering;
91+
use compiler_builtins::{foreach_bytes, foreach_ordering};
9392
compiler_builtins::foreach_cas!(cas::test);
9493
compiler_builtins::foreach_cas16!(test_cas16);
9594
compiler_builtins::foreach_swp!(swap::test);

compiler-builtins/build.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ fn main() {
8282
{
8383
println!("cargo:rustc-cfg=kernel_user_helpers")
8484
}
85-
8685
}
8786

8887
/// Run configuration for `libm` since it is included directly.

0 commit comments

Comments
 (0)