]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/personality_lifetimes.rs
Enable emission of alignment attrs for pointer params
[rust.git] / src / test / codegen / personality_lifetimes.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-msvc
12
13 // compile-flags: -O -C no-prepopulate-passes
14
15 #![crate_type="lib"]
16
17 struct S;
18
19 impl Drop for S {
20     fn drop(&mut self) {
21     }
22 }
23
24 fn might_unwind() {
25 }
26
27 // CHECK-LABEL: @test
28 #[no_mangle]
29 pub fn test() {
30     let _s = S;
31     // Check that the personality slot alloca gets a lifetime start in each cleanup block, not just
32     // in the first one.
33     // CHECK-LABEL: cleanup:
34     // CHECK: bitcast{{.*}}personalityslot
35     // CHECK-NEXT: call void @llvm.lifetime.start
36     // CHECK-LABEL: cleanup1:
37     // CHECK: bitcast{{.*}}personalityslot
38     // CHECK-NEXT: call void @llvm.lifetime.start
39     might_unwind();
40     let _t = S;
41     might_unwind();
42 }