]> git.lizzy.rs Git - rust.git/commitdiff
improve test indentation
authorlcnr/Bastian Kauschke <bastian_kauschke@hotmail.de>
Tue, 4 Jun 2019 20:13:41 +0000 (22:13 +0200)
committerlcnr/Bastian Kauschke <bastian_kauschke@hotmail.de>
Tue, 4 Jun 2019 20:13:41 +0000 (22:13 +0200)
src/test/codegen/intrinsics/exact_div.rs

index 6a55b492cb1e17b647669b02e7837b77194b2847..68eaa39997a15c91a3b716945f01c9e80297b9c8 100644 (file)
@@ -8,13 +8,13 @@
 // 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)
 }