Sign in
android
/
toolchain
/
rustc
/
32f7835b4f844d645621e83c89a3178ef87b0d69
/
.
/
src
/
test
/
codegen
/
force-no-unwind-tables.rs
blob: 3ee23f05eb2b1d11a968091803b23e36a6351792 [
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
!();
}