Skip to content

Commit 4c44d4a

Browse files
committed
improve test indentation
1 parent e02f133 commit 4c44d4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/codegen/intrinsics/exact_div.rs

Lines changed: 2 additions & 2 deletions
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
}

0 commit comments

Comments
 (0)