]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/validate_3.rs
Rollup merge of #45095 - bluss:discriminant-send-sync, r=alexcrichton
[rust.git] / src / test / mir-opt / validate_3.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 // compile-flags: -Z verbose -Z mir-emit-validate=1
13
14 struct Test {
15     x: i32
16 }
17
18 fn foo(_x: &i32) {}
19
20 fn main() {
21     // These internal unsafe functions should have no effect on the code generation.
22     unsafe fn _unused1() {}
23     fn _unused2(x: *const i32) -> i32 { unsafe { *x }}
24
25     let t = Test { x: 0 };
26     let t = &t;
27     foo(&t.x);
28 }
29
30 // END RUST SOURCE
31 // START rustc.node16.EraseRegions.after.mir
32 // fn main() -> () {
33 //     let mut _5: &ReErased i32;
34 //     bb0: {
35 //         Validate(Suspend(ReScope(Node(ItemLocalId(17)))), [((*_2).0: i32): i32/ReScope(Remainder(BlockRemainder { block: ItemLocalId(19), first_statement_index: 3 })) (imm)]);
36 //         _5 = &ReErased ((*_2).0: i32);
37 //         Validate(Acquire, [(*_5): i32/ReScope(Node(ItemLocalId(17))) (imm)]);
38 //         Validate(Suspend(ReScope(Node(ItemLocalId(17)))), [(*_5): i32/ReScope(Node(ItemLocalId(17))) (imm)]);
39 //         _4 = &ReErased (*_5);
40 //         Validate(Acquire, [(*_4): i32/ReScope(Node(ItemLocalId(17))) (imm)]);
41 //         Validate(Release, [_3: (), _4: &ReScope(Node(ItemLocalId(17))) i32]);
42 //         _3 = const foo(_4) -> bb1;
43 //     }
44 //     bb1: {
45 //         EndRegion(ReScope(Node(ItemLocalId(17))));
46 //         EndRegion(ReScope(Remainder(BlockRemainder { block: ItemLocalId(19), first_statement_index: 3 })));
47 //         return;
48 //     }
49 // }
50 // END rustc.node16.EraseRegions.after.mir