]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/not_equal_false.rs
Merge commit '1411a98352ba6bee8ba3b0131c9243e5db1e6a2e' into sync_cg_clif-2021-12-31
[rust.git] / src / test / mir-opt / not_equal_false.rs
1 // EMIT_MIR not_equal_false.opt.InstCombine.diff
2
3 fn opt(x: bool) -> u32 {
4     if x != false { 0 } else { 1 }
5 }
6
7 fn main() {
8     opt(false);
9 }