about summary refs log tree commit diff
path: root/tests/codegen/unwind-abis/nounwind.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/unwind-abis/nounwind.rs')
-rw-r--r--tests/codegen/unwind-abis/nounwind.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/codegen/unwind-abis/nounwind.rs b/tests/codegen/unwind-abis/nounwind.rs
deleted file mode 100644
index e40ed48ca73..00000000000
--- a/tests/codegen/unwind-abis/nounwind.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-//@ compile-flags: -C opt-level=0 -Cpanic=abort
-//@ needs-unwind
-
-#![crate_type = "lib"]
-
-// We disable optimizations to prevent LLVM from inferring the attribute.
-
-// CHECK: Function Attrs:{{.*}}nounwind
-// CHECK-NEXT: @foo
-#[no_mangle]
-pub extern "C" fn foo() {}
-
-// CHECK: Function Attrs:{{.*}}nounwind
-// CHECK-NEXT: @bar
-#[no_mangle]
-pub fn bar() {}