summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/copy-prop/calls.nrvo.CopyProp.diff
blob: b5d56909b0ddbe667f73bd6bec84eb052f0fbb46 (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
- // MIR for `nrvo` before CopyProp
+ // MIR for `nrvo` after CopyProp
  
  fn nrvo() -> u8 {
      let mut _0: u8;
      let _1: u8;
      scope 1 {
-         debug y => _1;
+         debug y => _0;
      }
  
      bb0: {
-         StorageLive(_1);
-         _1 = dummy(const 5_u8) -> [return: bb1, unwind continue];
+         _0 = dummy(const 5_u8) -> [return: bb1, unwind continue];
      }
  
      bb1: {
-         _0 = _1;
-         StorageDead(_1);
          return;
      }
  }