summaryrefslogtreecommitdiffstats
path: root/src/test/assembly/panic-unwind-no-uwtable.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/assembly/panic-unwind-no-uwtable.rs')
-rw-r--r--src/test/assembly/panic-unwind-no-uwtable.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/assembly/panic-unwind-no-uwtable.rs b/src/test/assembly/panic-unwind-no-uwtable.rs
new file mode 100644
index 000000000..8eed72b2f
--- /dev/null
+++ b/src/test/assembly/panic-unwind-no-uwtable.rs
@@ -0,0 +1,12 @@
+// assembly-output: emit-asm
+// only-x86_64-unknown-linux-gnu
+// compile-flags: -C panic=unwind -C force-unwind-tables=n
+
+#![crate_type = "lib"]
+
+// CHECK-LABEL: foo:
+// CHECK: .cfi_startproc
+#[no_mangle]
+fn foo() {
+ panic!();
+}