Rollup merge of #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?
This commit is contained in:
commit
c2bb8b9c08
6 changed files with 2 additions and 2 deletions
|
@ -8,13 +8,13 @@ use std::intrinsics::exact_div;
|
|||
// CHECK-LABEL: @exact_sdiv
|
||||
#[no_mangle]
|
||||
pub unsafe fn exact_sdiv(x: i32, y: i32) -> i32 {
|
||||
// CHECK: sdiv exact
|
||||
// CHECK: sdiv exact
|
||||
exact_div(x, y)
|
||||
}
|
||||
|
||||
// CHECK-LABEL: @exact_udiv
|
||||
#[no_mangle]
|
||||
pub unsafe fn exact_udiv(x: u32, y: u32) -> u32 {
|
||||
// CHECK: udiv exact
|
||||
// CHECK: udiv exact
|
||||
exact_div(x, y)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue