]> git.proxmox.com Git - rustc.git/blame - src/test/mir-opt/deaggregator_test.rs
New upstream version 1.14.0+dfsg1
[rustc.git] / src / test / mir-opt / deaggregator_test.rs
CommitLineData
5bcae85e
SL
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
11struct Baz {
12 x: usize,
13 y: f32,
14 z: bool,
15}
16
17fn bar(a: usize) -> Baz {
18 Baz { x: a, y: 0.0, z: false }
19}
20
21fn main() {}
22
23// END RUST SOURCE
24// START rustc.node13.Deaggregator.before.mir
25// bb0: {
c30ab7b3
SL
26// _2 = _1;
27// _3 = _2;
28// _0 = Baz { x: _3, y: const F32(0), z: const false };
29// return;
5bcae85e
SL
30// }
31// END rustc.node13.Deaggregator.before.mir
32// START rustc.node13.Deaggregator.after.mir
33// bb0: {
c30ab7b3
SL
34// _2 = _1;
35// _3 = _2;
36// (_0.0: usize) = _3;
37// (_0.1: f32) = const F32(0);
38// (_0.2: bool) = const false;
39// return;
5bcae85e 40// }
c30ab7b3 41// END rustc.node13.Deaggregator.after.mir