about summary refs log tree commit diff
path: root/tests/mir-opt/const_prop/indirect_mutation.bar.GVN.diff
blob: 849a57e2030615ca96f52a39f61bb9018e2593ef (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
- // MIR for `bar` before GVN
+ // MIR for `bar` after GVN
  
  fn bar() -> () {
      let mut _0: ();
      let mut _1: (i32,);
      let _2: ();
      let mut _3: *mut i32;
      let mut _5: i32;
      scope 1 {
          debug v => _1;
          let _4: bool;
          scope 2 {
              debug y => _4;
          }
      }
  
      bb0: {
          StorageLive(_1);
-         _1 = (const 1_i32,);
+         _1 = const (1_i32,);
          StorageLive(_2);
          StorageLive(_3);
          _3 = &raw mut (_1.0: i32);
          (*_3) = const 5_i32;
          StorageDead(_3);
          _2 = const ();
          StorageDead(_2);
          StorageLive(_4);
          StorageLive(_5);
          _5 = copy (_1.0: i32);
          _4 = Eq(move _5, const 5_i32);
          StorageDead(_5);
          _0 = const ();
          StorageDead(_4);
          StorageDead(_1);
          return;
      }
  }