summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_goto_const_eval_fail.f.ConstGoto.diff
blob: 84a13f28a313d3172bc0e20557aa74c7e627412e (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
51
- // MIR for `f` before ConstGoto
+ // MIR for `f` after ConstGoto
  
  fn f() -> u64 {
      let mut _0: u64;
      let mut _1: bool;
      let mut _2: i32;
  
      bb0: {
          StorageLive(_1);
          StorageLive(_2);
          _2 = const A;
          switchInt(_2) -> [1: bb2, 2: bb2, 3: bb2, otherwise: bb1];
      }
  
      bb1: {
          _1 = const true;
          goto -> bb3;
      }
  
      bb2: {
          _1 = const B;
-         goto -> bb3;
+         switchInt(_1) -> [0: bb4, otherwise: bb3];
      }
  
      bb3: {
-         switchInt(_1) -> [0: bb5, otherwise: bb4];
-     }
- 
-     bb4: {
          _0 = const 2_u64;
-         goto -> bb6;
+         goto -> bb5;
      }
  
-     bb5: {
+     bb4: {
          _0 = const 1_u64;
-         goto -> bb6;
+         goto -> bb5;
      }
  
-     bb6: {
+     bb5: {
          StorageDead(_2);
          StorageDead(_1);
          return;
      }
  }