]> git.proxmox.com Git - rustc.git/blame - src/test/codegen/force-no-unwind-tables.rs
Update unsuspicious file list
[rustc.git] / src / test / codegen / force-no-unwind-tables.rs
CommitLineData
cdc7bbd5
XL
1// compile-flags: -C no-prepopulate-passes -C panic=abort -C force-unwind-tables=n
2// ignore-windows
3
4#![crate_type="lib"]
5
6// CHECK-LABEL: define{{.*}}void @foo
7// CHECK-NOT: attributes #{{.*}} uwtable
8#[no_mangle]
9fn foo() {
10 panic!();
11}