rust/tests/mir-opt/inline/unwrap_unchecked.unwrap_unchecked.PreCodegen.after.panic-unwind.mir

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

50 lines
1.2 KiB
Rust
Raw Normal View History

2023-02-24 15:33:22 -06:00
// MIR for `unwrap_unchecked` after PreCodegen
fn unwrap_unchecked(_1: Option<T>) -> T {
2023-06-06 08:47:00 -05:00
debug slf => _1;
let mut _0: T;
scope 1 (inlined #[track_caller] Option::<T>::unwrap_unchecked) {
debug self => _1;
let mut _2: isize;
let mut _4: &std::option::Option<T>;
2023-02-24 15:33:22 -06:00
scope 2 {
2023-06-06 08:47:00 -05:00
debug val => _0;
2023-02-24 15:33:22 -06:00
}
scope 3 {
2023-06-06 08:47:00 -05:00
scope 5 (inlined unreachable_unchecked) {
2023-02-24 15:33:22 -06:00
scope 6 {
2023-06-06 08:47:00 -05:00
scope 7 (inlined unreachable_unchecked::runtime) {
let _3: !;
2023-02-24 15:33:22 -06:00
}
}
}
}
2023-06-06 08:47:00 -05:00
scope 4 (inlined Option::<T>::is_some) {
debug self => _4;
2023-02-24 15:33:22 -06:00
}
}
bb0: {
StorageLive(_4);
2023-10-04 12:50:03 -05:00
StorageLive(_2);
2023-06-06 08:47:00 -05:00
_2 = discriminant(_1);
switchInt(move _2) -> [0: bb1, 1: bb2, otherwise: bb3];
2023-02-24 15:33:22 -06:00
}
bb1: {
assume(const false);
_3 = core::panicking::panic_nounwind(const "unsafe precondition(s) violated: hint::unreachable_unchecked must never be reached") -> unwind unreachable;
}
bb2: {
2023-06-06 08:47:00 -05:00
_0 = move ((_1 as Some).0: T);
2023-10-04 12:50:03 -05:00
StorageDead(_2);
StorageDead(_4);
2023-06-06 08:47:00 -05:00
return;
2023-02-24 15:33:22 -06:00
}
bb3: {
2023-06-06 08:47:00 -05:00
unreachable;
2023-02-24 15:33:22 -06:00
}
}