rust/tests/mir-opt/not_equal_false.rs
2023-10-19 15:51:52 +00:00

12 lines
189 B
Rust

// skip-filecheck
// 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);
}