1
Fork 0

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:
Mazdak Farrokhzad 2019-06-11 17:13:56 +02:00 committed by GitHub
commit c2bb8b9c08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 2 additions and 2 deletions

View file

@ -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)
}