rust/tests/mir-opt/not_equal_false.rs

11 lines
169 B
Rust

// unit-test: InstCombine
// EMIT_MIR not_equal_false.opt.InstCombine.diff
fn opt(x: bool) -> u32 {
if x != false { 0 } else { 1 }
}
fn main() {
opt(false);
}