about summary refs log tree commit diff
path: root/tests/mir-opt/dead-store-elimination/place_mention.main.DeadStoreElimination-initial.diff
blob: 5a550285871248e7a4ba7235646754500fe569f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- // MIR for `main` before DeadStoreElimination-initial
+ // MIR for `main` after DeadStoreElimination-initial
  
  fn main() -> () {
      let mut _0: ();
      let mut _1: (&str, &str);
      scope 1 {
      }
  
      bb0: {
          StorageLive(_1);
          _1 = (const "Hello", const "World");
          PlaceMention(_1);
          StorageDead(_1);
          _0 = const ();
          return;
      }
  }