summary refs log tree commit diff
path: root/src/test/mir-opt/inline/inline-closure.rs
blob: bd36e77818edce1d72489068724e1f16f2e3305c (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
// compile-flags: -Z span_free_formats

// Tests that MIR inliner can handle closure arguments. (#45894)

fn main() {
    println!("{}", foo(0, 14));
}

fn foo<T: Copy>(_t: T, q: i32) -> i32 {
    let x = |_t, _q| _t;
    x(q, q)
}

// END RUST SOURCE
// START rustc.foo.Inline.after.mir
// fn foo(_1: T, _2: i32) -> i32{
//     debug _t => _1;
//     debug q => _2;
//     let mut _0: i32;
//     let _3: [closure@foo<T>::{{closure}}#0];
//     let mut _4: &[closure@foo<T>::{{closure}}#0];
//     let mut _5: (i32, i32);
//     let mut _6: i32;
//     let mut _7: i32;
//     let mut _8: i32;
//     let mut _9: i32;
//     scope 1 {
//         debug x => _3;
//         scope 2 {
//             debug _t => _8;
//             debug _q => _9;
//         }
//     }
//     bb0: {
//         ...
//         _3 = [closure@foo::<T>::{{closure}}#0];
//         ...
//         _4 = &_3;
//         ...
//         _6 = _2;
//         ...
//         _7 = _2;
//         _5 = (move _6, move _7);
//         _8 = move (_5.0: i32);
//         _9 = move (_5.1: i32);
//         _0 = _8;
//         ...
//         return;
//     }
// END rustc.foo.Inline.after.mir