summary refs log tree commit diff
path: root/src/test/mir-opt/packed-struct-drop-aligned.rs
blob: 1b114419448f11b54cbb48d4b69ac09128c4d5c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// ignore-wasm32-bare compiled with panic=abort by default

fn main() {
    let mut x = Packed(Aligned(Droppy(0)));
    x.0 = Aligned(Droppy(0));
}

struct Aligned(Droppy);
#[repr(packed)]
struct Packed(Aligned);

struct Droppy(usize);
impl Drop for Droppy {
    fn drop(&mut self) {}
}

// END RUST SOURCE
// START rustc.main.EraseRegions.before.mir
// fn main() -> () {
//     let mut _0: ();
//     scope 1 {
//         let mut _1: Packed;
//     }
//     scope 2 {
//     }
//     let mut _2: Aligned;
//     let mut _3: Droppy;
//     let mut _4: Aligned;
//     let mut _5: Droppy;
//     let mut _6: Aligned;
//
//     bb0: {
//         StorageLive(_1);
//         ...
//         _1 = Packed::{{constructor}}(move _2,);
//         ...
//         StorageLive(_6);
//         _6 = move (_1.0: Aligned);
//         drop(_6) -> [return: bb4, unwind: bb3];
//     }
//     bb1: {
//         resume;
//     }
//     bb2: {
//         StorageDead(_1);
//         return;
//     }
//     bb3: {
//         (_1.0: Aligned) = move _4;
//         drop(_1) -> bb1;
//     }
//     bb4: {
//         StorageDead(_6);
//         (_1.0: Aligned) = move _4;
//         StorageDead(_4);
//         _0 = ();
//         drop(_1) -> [return: bb2, unwind: bb1];
//     }
// }
// END rustc.main.EraseRegions.before.mir