about summary refs log tree commit diff
path: root/src/test/codegen/dealloc-no-unwind.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/codegen/dealloc-no-unwind.rs')
-rw-r--r--src/test/codegen/dealloc-no-unwind.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/codegen/dealloc-no-unwind.rs b/src/test/codegen/dealloc-no-unwind.rs
index f047c7a180c..3812ef44ff2 100644
--- a/src/test/codegen/dealloc-no-unwind.rs
+++ b/src/test/codegen/dealloc-no-unwind.rs
@@ -1,4 +1,3 @@
-//
 // no-system-llvm
 // compile-flags: -O
 
@@ -15,7 +14,7 @@ impl Drop for A {
 
 #[no_mangle]
 pub fn a(a: Box<i32>) {
-    // CHECK-LABEL: define void @a
+    // CHECK-LABEL: define{{.*}}void @a
     // CHECK: call void @__rust_dealloc
     // CHECK-NEXT: call void @foo
     let _a = A;