summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/switch_int.main.SimplifyConstCondition-after-const-prop.panic-unwind.diff
blob: e598a0d3df007359394f0d016ea82af2d180bbf4 (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
- // MIR for `main` before SimplifyConstCondition-after-const-prop
+ // MIR for `main` after SimplifyConstCondition-after-const-prop
  
  fn main() -> () {
      let mut _0: ();
      let mut _1: i32;
  
      bb0: {
          StorageLive(_1);
          _1 = const 1_i32;
-         switchInt(const 1_i32) -> [1: bb2, otherwise: bb1];
+         goto -> bb2;
      }
  
      bb1: {
          _0 = foo(const -1_i32) -> [return: bb3, unwind continue];
      }
  
      bb2: {
          _0 = foo(const 0_i32) -> [return: bb3, unwind continue];
      }
  
      bb3: {
          StorageDead(_1);
          return;
      }
  }