rust/tests/mir-opt/inline/unwrap_unchecked.unwrap_unchecked.Inline.panic-unwind.diff

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

55 lines
1.4 KiB
Diff
Raw Normal View History

2023-02-24 15:33:22 -06:00
- // MIR for `unwrap_unchecked` before Inline
+ // MIR for `unwrap_unchecked` after Inline
fn unwrap_unchecked(_1: Option<T>) -> T {
2023-06-06 08:47:00 -05:00
debug slf => _1;
let mut _0: T;
let mut _2: std::option::Option<T>;
+ scope 1 (inlined #[track_caller] Option::<T>::unwrap_unchecked) {
+ debug self => _2;
2023-08-17 12:06:55 -05:00
+ let mut _3: &std::option::Option<T>;
+ let mut _4: isize;
2023-07-22 10:34:22 -05:00
+ let mut _5: bool;
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) {
2023-02-24 15:33:22 -06:00
+ }
+ }
+ }
+ }
2023-06-06 08:47:00 -05:00
+ scope 4 (inlined Option::<T>::is_some) {
2023-08-17 12:06:55 -05:00
+ debug self => _3;
2023-02-24 15:33:22 -06:00
+ }
+ }
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_2);
_2 = move _1;
- _0 = Option::<T>::unwrap_unchecked(move _2) -> [return: bb1, unwind: bb2];
2023-07-22 10:34:22 -05:00
- }
-
- bb1: {
2023-08-17 12:06:55 -05:00
+ StorageLive(_3);
2023-10-04 12:50:03 -05:00
+ StorageLive(_4);
+ StorageLive(_5);
2023-08-17 12:06:55 -05:00
+ _4 = discriminant(_2);
+ _5 = Eq(_4, const 1_isize);
2023-07-22 10:34:22 -05:00
+ assume(move _5);
2023-06-06 08:47:00 -05:00
+ _0 = move ((_2 as Some).0: T);
+ StorageDead(_5);
2023-10-04 12:50:03 -05:00
+ StorageDead(_4);
2023-08-17 12:06:55 -05:00
+ StorageDead(_3);
2023-07-22 10:34:22 -05:00
StorageDead(_2);
return;
- }
-
- bb2 (cleanup): {
- resume;
2023-02-24 15:33:22 -06:00
}
}