]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/deaggregator_test_enum_2.rs
Auto merge of #45111 - aidanhs:aphs-bubble-worker-failures, r=alexcrichton
[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
28 // END RUST SOURCE
29 // START rustc.node12.Deaggregator.before.mir
30 //  bb1: {
31 //      _6 = _4;
32 //      _0 = Foo::A(_6,);
33 //      goto -> bb3;
34 //  }
35 //
36 //  bb2: {
37 //      _7 = _4;
38 //      _0 = Foo::B(_7,);
39 //      goto -> bb3;
40 //  }
41 // END rustc.node12.Deaggregator.before.mir
42 // START rustc.node12.Deaggregator.after.mir
43 //  bb1: {
44 //      _6 = _4;
45 //      ((_0 as A).0: i32) = _6;
46 //      discriminant(_0) = 0;
47 //      goto -> bb3;
48 //  }
49 //
50 //  bb2: {
51 //      _7 = _4;
52 //      ((_0 as B).0: i32) = _7;
53 //      discriminant(_0) = 1;
54 //      goto -> bb3;
55 //  }
56 // END rustc.node12.Deaggregator.after.mir
57 //