Skip to content

Commit c2bb8b9

Browse files
authored
Rollup merge of rust-lang#61526 - lcnr:test_reorder, r=nikomatsakis
move some tests into subfolders This reduces the size of the test folders without making the moved tests harder to find. Is this kind of change desired/worth the effort?
2 parents 17393b2 + 4c44d4a commit c2bb8b9

File tree

6 files changed

+2
-2
lines changed

6 files changed

+2
-2
lines changed

src/test/codegen/exact_div.rs src/test/codegen/intrinsics/exact_div.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ use std::intrinsics::exact_div;
88
// CHECK-LABEL: @exact_sdiv
99
#[no_mangle]
1010
pub unsafe fn exact_sdiv(x: i32, y: i32) -> i32 {
11-
// CHECK: sdiv exact
11+
// CHECK: sdiv exact
1212
exact_div(x, y)
1313
}
1414

1515
// CHECK-LABEL: @exact_udiv
1616
#[no_mangle]
1717
pub unsafe fn exact_udiv(x: u32, y: u32) -> u32 {
18-
// CHECK: udiv exact
18+
// CHECK: udiv exact
1919
exact_div(x, y)
2020
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)