]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/deaggregator_test.rs
change MIR dump filenames from `nodeN` to `DefPath`
[rust.git] / src / test / mir-opt / deaggregator_test.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 struct Baz {
12     x: usize,
13     y: f32,
14     z: bool,
15 }
16
17 fn bar(a: usize) -> Baz {
18     Baz { x: a, y: 0.0, z: false }
19 }
20
21 fn main() {
22     // Make sure the function actually gets instantiated.
23     bar(0);
24 }
25
26 // END RUST SOURCE
27 // START rustc.bar.Deaggregator.before.mir
28 // bb0: {
29 //     ...
30 //     _2 = _1;
31 //     ...
32 //     _0 = Baz { x: _2, y: const 0f32, z: const false };
33 //     ...
34 //     return;
35 // }
36 // END rustc.bar.Deaggregator.before.mir
37 // START rustc.bar.Deaggregator.after.mir
38 // bb0: {
39 //     ...
40 //     _2 = _1;
41 //     ...
42 //     (_0.0: usize) = _2;
43 //     (_0.1: f32) = const 0f32;
44 //     (_0.2: bool) = const false;
45 //     ...
46 //     return;
47 // }
48 // END rustc.bar.Deaggregator.after.mir