mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
28 lines
637 B
Diff
28 lines
637 B
Diff
- // MIR for `test` before ConstProp
|
|
+ // MIR for `test` after ConstProp
|
|
|
|
fn test(_1: bool, _2: bool) -> bool {
|
|
debug x => _1;
|
|
debug y => _2;
|
|
let mut _0: bool;
|
|
let mut _3: bool;
|
|
let mut _4: bool;
|
|
let mut _5: bool;
|
|
let mut _6: bool;
|
|
|
|
bb0: {
|
|
StorageLive(_3);
|
|
- _3 = BitOr(_2, const true);
|
|
+ _3 = const true;
|
|
StorageLive(_5);
|
|
- _5 = BitAnd(_1, const false);
|
|
- _0 = BitAnd(move _3, move _5);
|
|
+ _5 = const false;
|
|
+ _0 = const false;
|
|
StorageDead(_5);
|
|
StorageDead(_3);
|
|
return;
|
|
}
|
|
}
|
|
|