]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/deaggregator_test_enum_2.rs
Rollup merge of #47117 - tinaun:no_more_dups, r=frewsxcv
[rust.git] / src / test / mir-opt / deaggregator_test_enum_2.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 in more than one basic block
12
13 enum Foo {
14     A(i32),
15     B(i32),
16 }
17
18 fn test1(x: bool, y: i32) -> Foo {
19     if x {
20         Foo::A(y)
21     } else {
22         Foo::B(y)
23     }
24 }
25
26 fn main() {
27     // Make sure the function actually gets instantiated.
28     test1(false, 0);
29 }
30
31 // END RUST SOURCE
32 // START rustc.test1.Deaggregator.before.mir
33 //  bb1: {
34 //      StorageLive(_4);
35 //      _4 = _2;
36 //      _0 = Foo::A(move _4,);
37 //      StorageDead(_4);
38 //      goto -> bb3;
39 //  }
40 //  bb2: {
41 //      StorageLive(_5);
42 //      _5 = _2;
43 //      _0 = Foo::B(move _5,);
44 //      StorageDead(_5);
45 //      goto -> bb3;
46 //  }
47 // END rustc.test1.Deaggregator.before.mir
48 // START rustc.test1.Deaggregator.after.mir
49 //  bb1: {
50 //      StorageLive(_4);
51 //      _4 = _2;
52 //      ((_0 as A).0: i32) = move _4;
53 //      discriminant(_0) = 0;
54 //      StorageDead(_4);
55 //      goto -> bb3;
56 //  }
57 //  bb2: {
58 //      StorageLive(_5);
59 //      _5 = _2;
60 //      ((_0 as B).0: i32) = move _5;
61 //      discriminant(_0) = 1;
62 //      StorageDead(_5);
63 //      goto -> bb3;
64 //  }
65 // END rustc.test1.Deaggregator.after.mir
66 //