rust/tests/mir-opt/basic_assignment.main.SimplifyCfg-initial.after.mir

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

87 lines
2.3 KiB
Rust
Raw Normal View History

2020-03-11 10:49:00 +00:00
// MIR for `main` after SimplifyCfg-initial
| User Type Annotations
2023-10-16 18:03:02 +00:00
| 0: user_ty: Canonical { value: Ty(std::option::Option<std::boxed::Box<u32>>), max_universe: U0, variables: [] }, span: $DIR/basic_assignment.rs:38:17: 38:33, inferred_ty: std::option::Option<std::boxed::Box<u32>>
| 1: user_ty: Canonical { value: Ty(std::option::Option<std::boxed::Box<u32>>), max_universe: U0, variables: [] }, span: $DIR/basic_assignment.rs:38:17: 38:33, inferred_ty: std::option::Option<std::boxed::Box<u32>>
2020-03-11 10:49:00 +00:00
|
fn main() -> () {
2023-06-06 13:47:00 +00:00
let mut _0: ();
let _1: bool;
let mut _3: bool;
let mut _6: std::option::Option<std::boxed::Box<u32>>;
2020-03-11 10:49:00 +00:00
scope 1 {
2023-06-06 13:47:00 +00:00
debug nodrop_x => _1;
let _2: bool;
2020-03-11 10:49:00 +00:00
scope 2 {
2023-06-06 13:47:00 +00:00
debug nodrop_y => _2;
let _4: std::option::Option<std::boxed::Box<u32>> as UserTypeProjection { base: UserType(0), projs: [] };
2020-03-11 10:49:00 +00:00
scope 3 {
2023-06-06 13:47:00 +00:00
debug drop_x => _4;
let _5: std::option::Option<std::boxed::Box<u32>>;
2020-03-11 10:49:00 +00:00
scope 4 {
2023-06-06 13:47:00 +00:00
debug drop_y => _5;
2020-03-11 10:49:00 +00:00
}
}
}
}
bb0: {
2023-06-06 13:47:00 +00:00
StorageLive(_1);
_1 = const false;
FakeRead(ForLet(None), _1);
StorageLive(_2);
StorageLive(_3);
_3 = _1;
_2 = move _3;
StorageDead(_3);
StorageLive(_4);
_4 = Option::<Box<u32>>::None;
FakeRead(ForLet(None), _4);
AscribeUserType(_4, o, UserTypeProjection { base: UserType(1), projs: [] });
StorageLive(_5);
StorageLive(_6);
_6 = move _4;
drop(_5) -> [return: bb1, unwind: bb2];
2020-03-11 10:49:00 +00:00
}
2020-10-02 20:11:24 +00:00
bb1: {
2023-06-06 13:47:00 +00:00
_5 = move _6;
drop(_6) -> [return: bb3, unwind: bb6];
}
bb2 (cleanup): {
2023-06-06 13:47:00 +00:00
_5 = move _6;
2023-08-24 12:26:26 +00:00
drop(_6) -> [return: bb6, unwind terminate(cleanup)];
}
bb3: {
2023-06-06 13:47:00 +00:00
StorageDead(_6);
_0 = const ();
drop(_5) -> [return: bb4, unwind: bb7];
}
bb4: {
2023-06-06 13:47:00 +00:00
StorageDead(_5);
drop(_4) -> [return: bb5, unwind: bb8];
}
bb5: {
2023-06-06 13:47:00 +00:00
StorageDead(_4);
StorageDead(_2);
StorageDead(_1);
return;
}
bb6 (cleanup): {
2023-08-24 12:26:26 +00:00
drop(_5) -> [return: bb7, unwind terminate(cleanup)];
}
bb7 (cleanup): {
2023-08-24 12:26:26 +00:00
drop(_4) -> [return: bb8, unwind terminate(cleanup)];
}
bb8 (cleanup): {
2023-06-06 13:47:00 +00:00
resume;
2020-03-11 10:49:00 +00:00
}
}