Skip to content

Commit

Permalink
improve test indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
lcnr committed Jun 4, 2019
1 parent e02f133 commit 4c44d4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/codegen/intrinsics/exact_div.rs
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)
}

0 comments on commit 4c44d4a

Please sign in to comment.