Skip to content

Commit

Permalink
Rollup merge of rust-lang#61526 - lcnr:test_reorder, r=nikomatsakis
Browse files Browse the repository at this point in the history
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?
  • Loading branch information
Centril authored Jun 11, 2019
2 parents 9d9c7ad + 4c44d4a commit 042d67e
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 042d67e

Please sign in to comment.