summaryrefslogtreecommitdiffstats
path: root/src/test/codegen/unwind-abis/nounwind-on-stable-panic-abort.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/codegen/unwind-abis/nounwind-on-stable-panic-abort.rs')
-rw-r--r--src/test/codegen/unwind-abis/nounwind-on-stable-panic-abort.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/codegen/unwind-abis/nounwind-on-stable-panic-abort.rs b/src/test/codegen/unwind-abis/nounwind-on-stable-panic-abort.rs
deleted file mode 100644
index 106d593b2..000000000
--- a/src/test/codegen/unwind-abis/nounwind-on-stable-panic-abort.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// compile-flags: -C opt-level=0 -Cpanic=abort
-// ignore-wasm32-bare compiled with panic=abort by default
-
-#![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() {}