summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/inline/unwrap_unchecked.unwrap_unchecked.Inline.panic-abort.diff
blob: 2a36ad9230e4b06758608d6c762ea010476451c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
- // MIR for `unwrap_unchecked` before Inline
+ // MIR for `unwrap_unchecked` after Inline
  
  fn unwrap_unchecked(_1: Option<T>) -> T {
      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;
+         let mut _3: &std::option::Option<T>;
+         let mut _4: isize;
+         let mut _5: bool;
+         scope 2 {
+             debug val => _0;
+         }
+         scope 3 {
+             scope 5 (inlined unreachable_unchecked) {
+                 scope 6 {
+                     scope 7 (inlined unreachable_unchecked::runtime) {
+                     }
+                 }
+             }
+         }
+         scope 4 (inlined Option::<T>::is_some) {
+             debug self => _3;
+         }
+     }
  
      bb0: {
          StorageLive(_2);
          _2 = move _1;
-         _0 = Option::<T>::unwrap_unchecked(move _2) -> [return: bb1, unwind unreachable];
-     }
- 
-     bb1: {
+         StorageLive(_3);
+         StorageLive(_4);
+         StorageLive(_5);
+         _4 = discriminant(_2);
+         _5 = Eq(_4, const 1_isize);
+         assume(move _5);
+         _0 = move ((_2 as Some).0: T);
+         StorageDead(_5);
+         StorageDead(_4);
+         StorageDead(_3);
          StorageDead(_2);
          return;
      }
  }