]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/deaggregator_test_multiple.rs
Auto merge of #38066 - bluss:string-slice-error, r=sfackler
[rust.git] / src / test / mir-opt / deaggregator_test_multiple.rs
1 // Copyright 2016 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 // Test that deaggregate fires more than once per block
12
13 enum Foo {
14     A(i32),
15     B,
16 }
17
18 fn test(x: i32) -> [Foo; 2] {
19     [Foo::A(x), Foo::A(x)]
20 }
21
22 fn main() { }
23
24 // END RUST SOURCE
25 // START rustc.node10.Deaggregator.before.mir
26 // bb0: {
27 //     _2 = _1;
28 //     _4 = _2;
29 //     _3 = Foo::A(_4,);
30 //     _6 = _2;
31 //     _5 = Foo::A(_6,);
32 //     _0 = [_3, _5];
33 //     return;
34 // }
35 // END rustc.node10.Deaggregator.before.mir
36 // START rustc.node10.Deaggregator.after.mir
37 // bb0: {
38 //     _2 = _1;
39 //     _4 = _2;
40 //     ((_3 as A).0: i32) = _4;
41 //     discriminant(_3) = 0;
42 //     _6 = _2;
43 //     ((_5 as A).0: i32) = _6;
44 //     discriminant(_5) = 0;
45 //     _0 = [_3, _5];
46 //     return;
47 // }
48 // END rustc.node10.Deaggregator.after.mir