mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
405 B
Rust
19 lines
405 B
Rust
// unit-test: GVN
|
|
|
|
// EMIT_MIR boolean_identities.test.GVN.diff
|
|
pub fn test(x: bool, y: bool) -> bool {
|
|
// CHECK-LABEL: fn test(
|
|
// CHECK: debug a => [[a:_.*]];
|
|
// CHECK: debug b => [[b:_.*]];
|
|
// CHECK: [[a]] = const true;
|
|
// CHECK: [[b]] = const false;
|
|
// CHECK: _0 = const false;
|
|
let a = (y | true);
|
|
let b = (x & false);
|
|
a & b
|
|
}
|
|
|
|
fn main() {
|
|
test(true, false);
|
|
}
|