summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_prop/boolean_identities.test.ConstProp.diff
blob: 549b4711e874d281f62050ad68226ced07af3c9f (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
- // MIR for `test` before ConstProp
+ // MIR for `test` after ConstProp
  
  fn test(_1: bool, _2: bool) -> bool {
      debug x => _1;                       // in scope 0 at $DIR/boolean_identities.rs:+0:13: +0:14
      debug y => _2;                       // in scope 0 at $DIR/boolean_identities.rs:+0:22: +0:23
      let mut _0: bool;                    // return place in scope 0 at $DIR/boolean_identities.rs:+0:34: +0:38
      let mut _3: bool;                    // in scope 0 at $DIR/boolean_identities.rs:+1:5: +1:15
      let mut _4: bool;                    // in scope 0 at $DIR/boolean_identities.rs:+1:6: +1:7
      let mut _5: bool;                    // in scope 0 at $DIR/boolean_identities.rs:+1:18: +1:29
      let mut _6: bool;                    // in scope 0 at $DIR/boolean_identities.rs:+1:19: +1:20
  
      bb0: {
          StorageLive(_3);                 // scope 0 at $DIR/boolean_identities.rs:+1:5: +1:15
-         _3 = BitOr(_2, const true);      // scope 0 at $DIR/boolean_identities.rs:+1:5: +1:15
+         _3 = const true;                 // scope 0 at $DIR/boolean_identities.rs:+1:5: +1:15
          StorageLive(_5);                 // scope 0 at $DIR/boolean_identities.rs:+1:18: +1:29
-         _5 = BitAnd(_1, const false);    // scope 0 at $DIR/boolean_identities.rs:+1:18: +1:29
-         _0 = BitAnd(move _3, move _5);   // scope 0 at $DIR/boolean_identities.rs:+1:5: +1:29
+         _5 = const false;                // scope 0 at $DIR/boolean_identities.rs:+1:18: +1:29
+         _0 = const false;                // scope 0 at $DIR/boolean_identities.rs:+1:5: +1:29
          StorageDead(_5);                 // scope 0 at $DIR/boolean_identities.rs:+1:28: +1:29
          StorageDead(_3);                 // scope 0 at $DIR/boolean_identities.rs:+1:28: +1:29
          return;                          // scope 0 at $DIR/boolean_identities.rs:+2:2: +2:2
      }
  }