2017-02-26 14:21:08 +00:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// this tests move up progration, which is not yet implemented
|
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// check that codegen of assignment expressions is sane. Assignments
|
|
|
|
// tend to be absent in simple code, so subtle breakage in them can
|
|
|
|
// leave a quite hard-to-find trail of destruction.
|
|
|
|
|
2018-03-23 10:07:18 +00:00
|
|
|
// ignore-tidy-linelength
|
|
|
|
|
2017-02-26 14:21:08 +00:00
|
|
|
fn main() {
|
|
|
|
let nodrop_x = false;
|
|
|
|
let nodrop_y;
|
|
|
|
|
|
|
|
nodrop_y = nodrop_x;
|
|
|
|
|
|
|
|
let drop_x : Option<Box<u32>> = None;
|
|
|
|
let drop_y;
|
|
|
|
|
|
|
|
drop_y = drop_x;
|
|
|
|
}
|
|
|
|
|
|
|
|
// END RUST SOURCE
|
2017-11-04 11:27:08 +00:00
|
|
|
// START rustc.main.SimplifyCfg-initial.after.mir
|
2017-02-26 14:21:08 +00:00
|
|
|
// bb0: {
|
|
|
|
// StorageLive(_1);
|
|
|
|
// _1 = const false;
|
|
|
|
// StorageLive(_2);
|
|
|
|
// StorageLive(_3);
|
|
|
|
// _3 = _1;
|
2017-11-17 16:22:44 +00:00
|
|
|
// _2 = move _3;
|
2017-02-26 14:21:08 +00:00
|
|
|
// StorageDead(_3);
|
|
|
|
// StorageLive(_4);
|
2018-08-31 22:59:35 +00:00
|
|
|
// AscribeUserType(_4, Canonical { variables: [], value: std::option::Option<std::boxed::Box<u32>> });
|
2017-02-26 14:21:08 +00:00
|
|
|
// _4 = std::option::Option<std::boxed::Box<u32>>::None;
|
2017-07-31 20:25:27 +00:00
|
|
|
// StorageLive(_5);
|
2017-02-26 14:21:08 +00:00
|
|
|
// StorageLive(_6);
|
2017-11-17 16:22:44 +00:00
|
|
|
// _6 = move _4;
|
2017-11-27 23:45:16 +00:00
|
|
|
// replace(_5 <-move _6) -> [return: bb2, unwind: bb5];
|
2017-02-26 14:21:08 +00:00
|
|
|
// }
|
|
|
|
// bb1: {
|
2017-11-27 23:45:16 +00:00
|
|
|
// resume;
|
2017-02-26 14:21:08 +00:00
|
|
|
// }
|
|
|
|
// bb2: {
|
2017-11-27 23:45:16 +00:00
|
|
|
// drop(_6) -> [return: bb6, unwind: bb4];
|
2017-02-26 14:21:08 +00:00
|
|
|
// }
|
|
|
|
// bb3: {
|
2017-11-27 23:45:16 +00:00
|
|
|
// drop(_4) -> bb1;
|
2017-02-26 14:21:08 +00:00
|
|
|
// }
|
|
|
|
// bb4: {
|
2017-07-31 21:10:46 +00:00
|
|
|
// drop(_5) -> bb3;
|
2017-02-26 14:21:08 +00:00
|
|
|
// }
|
|
|
|
// bb5: {
|
2017-07-31 21:10:46 +00:00
|
|
|
// drop(_6) -> bb4;
|
2017-02-26 14:21:08 +00:00
|
|
|
// }
|
|
|
|
// bb6: {
|
2017-07-31 20:25:27 +00:00
|
|
|
// StorageDead(_6);
|
2017-02-26 14:21:08 +00:00
|
|
|
// _0 = ();
|
2017-07-31 21:10:46 +00:00
|
|
|
// drop(_5) -> [return: bb7, unwind: bb3];
|
2017-02-26 14:21:08 +00:00
|
|
|
// }
|
2017-07-31 21:10:46 +00:00
|
|
|
// bb7: {
|
2017-07-31 20:25:27 +00:00
|
|
|
// StorageDead(_5);
|
2017-11-27 23:45:16 +00:00
|
|
|
// drop(_4) -> [return: bb8, unwind: bb1];
|
2017-02-26 14:21:08 +00:00
|
|
|
// }
|
2017-07-31 21:10:46 +00:00
|
|
|
// bb8: {
|
2017-02-26 14:21:08 +00:00
|
|
|
// StorageDead(_4);
|
|
|
|
// StorageDead(_2);
|
|
|
|
// StorageDead(_1);
|
|
|
|
// return;
|
|
|
|
// }
|
2017-11-04 11:27:08 +00:00
|
|
|
// END rustc.main.SimplifyCfg-initial.after.mir
|