about summary refs log tree commit diff
path: root/tests/codegen/lto-removes-invokes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/lto-removes-invokes.rs')
-rw-r--r--tests/codegen/lto-removes-invokes.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/codegen/lto-removes-invokes.rs b/tests/codegen/lto-removes-invokes.rs
index f0102c25d5b..3217c239bf7 100644
--- a/tests/codegen/lto-removes-invokes.rs
+++ b/tests/codegen/lto-removes-invokes.rs
@@ -10,8 +10,8 @@ fn main() {
 fn foo() {
     let _a = Box::new(3);
     bar();
-// CHECK-LABEL: define dso_local void @foo
-// CHECK: call void @bar
+    // CHECK-LABEL: define dso_local void @foo
+    // CHECK: call void @bar
 }
 
 #[inline(never)]