]> git.lizzy.rs Git - rust.git/blob - src/test/assembly/panic-unwind-no-uwtable.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[rust.git] / src / test / assembly / panic-unwind-no-uwtable.rs
1 // assembly-output: emit-asm
2 // only-x86_64-unknown-linux-gnu
3 // compile-flags: -C panic=unwind -C force-unwind-tables=n
4
5 #![crate_type = "lib"]
6
7 // CHECK-LABEL: foo:
8 // CHECK: .cfi_startproc
9 #[no_mangle]
10 fn foo() {
11     panic!();
12 }