]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/nll/region-liveness-basic.rs
Update the tools CI to use --no-fail-fast and --save-toolstates.
[rust.git] / src / test / mir-opt / nll / region-liveness-basic.rs
1 // Copyright 2012-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 // Basic test for liveness constraints: the region (`R1`) that appears
12 // in the type of `p` includes the points after `&v[0]` up to (but not
13 // including) the call to `use_x`. The `else` branch is not included.
14
15 // compile-flags:-Znll -Zverbose
16 //                     ^^^^^^^^^ force compiler to dump more region information
17
18 #![allow(warnings)]
19
20 fn use_x(_: usize) -> bool { true }
21
22 fn main() {
23     let mut v = [1, 2, 3];
24     let p = &v[0];
25     if true {
26         use_x(*p);
27     } else {
28         use_x(22);
29     }
30 }
31
32 // END RUST SOURCE
33 // START rustc.main.nll.0.mir
34 // | '_#1r: {bb1[1], bb2[0], bb2[1]}
35 // | '_#2r: {bb1[1], bb2[0], bb2[1]}
36 // ...
37 //             let _2: &'_#2r usize;
38 // END rustc.main.nll.0.mir
39 // START rustc.main.nll.0.mir
40 //    bb1: {
41 //            | Live variables at bb1[0]: [_1, _3]
42 //        _2 = &'_#1r _1[_3];
43 //            | Live variables at bb1[1]: [_2]
44 //        switchInt(const true) -> [0u8: bb3, otherwise: bb2];
45 //    }
46 // END rustc.main.nll.0.mir
47 // START rustc.main.nll.0.mir
48 //    bb2: {
49 //            | Live variables at bb2[0]: [_2]
50 //        StorageLive(_7);
51 //            | Live variables at bb2[1]: [_2]
52 //        _7 = (*_2);
53 //            | Live variables at bb2[2]: [_7]
54 //        _6 = const use_x(move _7) -> bb4;
55 //    }
56 // END rustc.main.nll.0.mir