about summary refs log tree commit diff
path: root/tests/codegen/panic-abort-windows.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/codegen/panic-abort-windows.rs')
-rw-r--r--tests/codegen/panic-abort-windows.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/codegen/panic-abort-windows.rs b/tests/codegen/panic-abort-windows.rs
deleted file mode 100644
index 17fdd9cc726..00000000000
--- a/tests/codegen/panic-abort-windows.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// This test is for *-windows only.
-//@ only-windows
-
-//@ compile-flags: -C no-prepopulate-passes -C panic=abort -Copt-level=3
-
-#![crate_type = "lib"]
-
-// CHECK: Function Attrs: nounwind uwtable
-// CHECK-NEXT: define void @normal_uwtable()
-#[no_mangle]
-pub fn normal_uwtable() {}
-
-// CHECK: Function Attrs: nounwind uwtable
-// CHECK-NEXT: define void @extern_uwtable()
-#[no_mangle]
-pub extern "C" fn extern_uwtable() {}