blob: 1de5e0858e0ba2c64278710e8b20fe15e01ba3f0 [file] [log] [blame]
//@ compile-flags: -C no-prepopulate-passes -C panic=abort -C force-unwind-tables=n
//@ ignore-windows: unwind tables are required for panics on Windows
#![crate_type = "lib"]
// CHECK-LABEL: define{{.*}}void @foo
// CHECK-NOT: attributes #{{.*}} uwtable
#[no_mangle]
fn foo() {
panic!();
}