Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/tags/1.81.0
/
.
/
tests
/
assembly
/
panic-unwind-no-uwtable.rs
blob: 181656a8987208e2b11580aa7ea6de8978bdccff [
file
] [
log
] [
blame
]
//@ assembly-output: emit-asm
//@ only-x86_64-unknown-linux-gnu
//@ compile-flags: -C panic=unwind -C force-unwind-tables=n
#![
crate_type
=
"lib"
]
// CHECK-LABEL: foo:
// CHECK: .cfi_startproc
#[
no_mangle
]
fn
foo
()
{
panic
!();
}