summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/issue_72181.main.built.after.mir
blob: 4e4071536b1cd6738cd0550194b0f6781ad31d22 (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
// MIR for `main` after built

fn main() -> () {
    let mut _0: ();
    let mut _1: usize;
    let mut _3: Foo;
    let mut _4: Foo;
    let mut _5: u64;
    let _6: usize;
    let mut _7: usize;
    let mut _8: bool;
    scope 1 {
        let _2: [Foo; 2];
        scope 2 {
            debug f => _2;
            scope 3 {
            }
            scope 4 {
            }
        }
    }

    bb0: {
        StorageLive(_1);
        _1 = std::mem::size_of::<Foo>() -> [return: bb1, unwind: bb3];
    }

    bb1: {
        PlaceMention(_1);
        StorageDead(_1);
        StorageLive(_2);
        StorageLive(_3);
        _3 = Foo { a: const 42_u64 };
        StorageLive(_4);
        _4 = Foo { a: const 10_u64 };
        _2 = [move _3, move _4];
        StorageDead(_4);
        StorageDead(_3);
        FakeRead(ForLet(None), _2);
        StorageLive(_5);
        StorageLive(_6);
        _6 = const 0_usize;
        _7 = Len(_2);
        _8 = Lt(_6, _7);
        assert(move _8, "index out of bounds: the length is {} but the index is {}", move _7, _6) -> [success: bb2, unwind: bb3];
    }

    bb2: {
        _5 = (_2[_6].0: u64);
        PlaceMention(_5);
        StorageDead(_6);
        StorageDead(_5);
        _0 = const ();
        StorageDead(_2);
        return;
    }

    bb3 (cleanup): {
        resume;
    }
}