2021-03-23 02:38:30 +08:00
|
|
|
//@ compile-flags: -C no-prepopulate-passes -C panic=abort -C force-unwind-tables=n
|
2024-12-25 22:24:30 -05:00
|
|
|
//@ ignore-windows: unwind tables are required for panics on Windows
|
2021-03-23 02:38:30 +08:00
|
|
|
|
2024-05-29 14:11:20 +10:00
|
|
|
#![crate_type = "lib"]
|
2021-03-23 02:38:30 +08:00
|
|
|
|
2021-03-25 18:49:35 +08:00
|
|
|
// CHECK-LABEL: define{{.*}}void @foo
|
2021-03-23 02:38:30 +08:00
|
|
|
// CHECK-NOT: attributes #{{.*}} uwtable
|
2021-03-25 18:49:35 +08:00
|
|
|
#[no_mangle]
|
|
|
|
fn foo() {
|
|
|
|
panic!();
|
|
|
|
}
|