summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/return_place.add.PreCodegen.before.mir
blob: b12d84fa4790ab02059b01692cdfc246b83efc29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// MIR for `add` before PreCodegen

fn add() -> u32 {
    let mut _0: u32;                     // return place in scope 0 at $DIR/return_place.rs:+0:13: +0:16
    let mut _1: (u32, bool);             // in scope 0 at $DIR/return_place.rs:+1:5: +1:10

    bb0: {
        _1 = const (4_u32, false);       // scope 0 at $DIR/return_place.rs:+1:5: +1:10
        assert(!const false, "attempt to compute `{} + {}`, which would overflow", const 2_u32, const 2_u32) -> bb1; // scope 0 at $DIR/return_place.rs:+1:5: +1:10
    }

    bb1: {
        _0 = const 4_u32;                // scope 0 at $DIR/return_place.rs:+1:5: +1:10
        return;                          // scope 0 at $DIR/return_place.rs:+2:2: +2:2
    }
}