mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
11 lines
169 B
Rust
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);
|
|
}
|