summaryrefslogtreecommitdiffstats
path: root/src/test/codegen/panic-abort-windows.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/codegen/panic-abort-windows.rs')
-rw-r--r--src/test/codegen/panic-abort-windows.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/codegen/panic-abort-windows.rs b/src/test/codegen/panic-abort-windows.rs
deleted file mode 100644
index 2ee29762d..000000000
--- a/src/test/codegen/panic-abort-windows.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// This test is for *-windows only.
-// only-windows
-
-// compile-flags: -C no-prepopulate-passes -C panic=abort -O
-
-#![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 fn extern_uwtable() {
-}