about summary refs log tree commit diff
path: root/tests/assembly-llvm/panic-unwind-no-uwtable.rs
blob: 181656a8987208e2b11580aa7ea6de8978bdccff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ 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!();
}