summaryrefslogtreecommitdiffstats
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.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/codegen/panic-abort-windows.rs b/tests/codegen/panic-abort-windows.rs
new file mode 100644
index 000000000..2ee29762d
--- /dev/null
+++ b/tests/codegen/panic-abort-windows.rs
@@ -0,0 +1,18 @@
+// 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() {
+}