]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/validate_2.rs
Auto merge of #46393 - kennytm:45861-step-2-3-make-tools-job-not-fail-fast, r=alexcri...
[rust.git] / src / test / mir-opt / validate_2.rs
1 // Copyright 2017 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 // ignore-tidy-linelength
12 // ignore-wasm32-bare unwinding being disabled causes differences in output
13 // ignore-wasm64-bare unwinding being disabled causes differences in output
14 // compile-flags: -Z verbose -Z mir-emit-validate=1
15
16 fn main() {
17     let _x : Box<[i32]> = Box::new([1, 2, 3]);
18 }
19
20 // END RUST SOURCE
21 // START rustc.main.EraseRegions.after.mir
22 // fn main() -> () {
23 //     ...
24 //     bb1: {
25 //         Validate(Acquire, [_2: std::boxed::Box<[i32; 3]>]);
26 //         Validate(Release, [_2: std::boxed::Box<[i32; 3]>]);
27 //         _1 = move _2 as std::boxed::Box<[i32]> (Unsize);
28 //         Validate(Acquire, [_1: std::boxed::Box<[i32]>]);
29 //         StorageDead(_2);
30 //         StorageDead(_3);
31 //         _0 = ();
32 //         Validate(Release, [_1: std::boxed::Box<[i32]>]);
33 //         drop(_1) -> [return: bb2, unwind: bb3];
34 //     }
35 //     ...
36 // }
37 // END rustc.main.EraseRegions.after.mir