rust/tests/mir-opt/simplify_locals_removes_unu...

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

50 lines
1.1 KiB
Diff
Raw Normal View History

2022-12-05 03:20:55 +08:00
- // MIR for `map` before SimplifyLocals-before-const-prop
+ // MIR for `map` after SimplifyLocals-before-const-prop
fn map(_1: Option<Box<()>>) -> Option<Box<()>> {
2023-06-06 21:47:00 +08:00
debug x => _1;
let mut _0: std::option::Option<std::boxed::Box<()>>;
let mut _2: isize;
let _3: std::boxed::Box<()>;
let mut _4: std::boxed::Box<()>;
- let mut _5: bool;
- let mut _6: isize;
- let mut _7: isize;
scope 1 {
2023-06-06 21:47:00 +08:00
debug x => _3;
}
bb0: {
2023-06-06 21:47:00 +08:00
- _5 = const false;
- _5 = const true;
_2 = discriminant(_1);
switchInt(move _2) -> [0: bb3, 1: bb1, otherwise: bb2];
}
bb1: {
2023-06-06 21:47:00 +08:00
StorageLive(_3);
_3 = move ((_1 as Some).0: std::boxed::Box<()>);
StorageLive(_4);
_4 = move _3;
_0 = Option::<Box<()>>::Some(move _4);
StorageDead(_4);
StorageDead(_3);
goto -> bb4;
}
bb2: {
2023-06-06 21:47:00 +08:00
unreachable;
2022-07-26 21:17:02 +08:00
}
bb3: {
2023-06-06 21:47:00 +08:00
_0 = Option::<Box<()>>::None;
goto -> bb4;
}
2022-07-26 21:17:02 +08:00
bb4: {
2023-06-06 21:47:00 +08:00
- _6 = discriminant(_1);
return;
}
}