summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/intrinsic_asserts.removable.InstSimplify.diff
blob: 70c3e8830f4ad1208587bf4d8dd0922bdd139466 (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
- // MIR for `removable` before InstSimplify
+ // MIR for `removable` after InstSimplify
  
  fn removable() -> () {
      let mut _0: ();
      let _1: ();
      let _2: ();
      let _3: ();
  
      bb0: {
          nop;
-         _1 = assert_inhabited::<()>() -> [return: bb1, unwind unreachable];
+         goto -> bb1;
      }
  
      bb1: {
          nop;
          nop;
-         _2 = assert_zero_valid::<u8>() -> [return: bb2, unwind unreachable];
+         goto -> bb2;
      }
  
      bb2: {
          nop;
          nop;
-         _3 = assert_mem_uninitialized_valid::<u8>() -> [return: bb3, unwind unreachable];
+         goto -> bb3;
      }
  
      bb3: {
          nop;
          nop;
          return;
      }
  }