rust/tests/mir-opt/not_equal_false.rs
2023-05-06 23:22:32 -04:00

11 lines
171 B
Rust

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