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.

34 lines
777 B
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) {
let mut _2: isize;
2023-02-24 15:33:22 -06:00
scope 2 {
}
scope 3 (inlined unreachable_unchecked) {
scope 4 (inlined core::ub_checks::check_language_ub) {
scope 5 (inlined core::ub_checks::check_language_ub::runtime) {
}
2023-02-24 15:33:22 -06:00
}
}
}
bb0: {
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: bb2, 1: bb1, otherwise: bb2];
2024-02-07 09:30:39 -06:00
}
bb1: {
_0 = copy ((_1 as Some).0: T);
2023-07-22 10:34:22 -05:00
StorageDead(_2);
2023-06-06 08:47:00 -05:00
return;
2023-02-24 15:33:22 -06:00
}
2024-02-07 09:30:39 -06:00
bb2: {
2024-02-07 09:30:39 -06:00
unreachable;
}
2023-02-24 15:33:22 -06:00
}