summaryrefslogtreecommitdiffstats
path: root/src/test/codegen/force-no-unwind-tables.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/codegen/force-no-unwind-tables.rs')
-rw-r--r--src/test/codegen/force-no-unwind-tables.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/codegen/force-no-unwind-tables.rs b/src/test/codegen/force-no-unwind-tables.rs
deleted file mode 100644
index 3ee23f05e..000000000
--- a/src/test/codegen/force-no-unwind-tables.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// compile-flags: -C no-prepopulate-passes -C panic=abort -C force-unwind-tables=n
-// ignore-windows
-
-#![crate_type="lib"]
-
-// CHECK-LABEL: define{{.*}}void @foo
-// CHECK-NOT: attributes #{{.*}} uwtable
-#[no_mangle]
-fn foo() {
- panic!();
-}