blob: 0189ae7c0a68637dec9ad96e5f7377cfe09f65d8 [file] [log] [blame]
//@ 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!();
}