mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 06:59:48 +00:00
12 lines
162 B
Rust
12 lines
162 B
Rust
// unit-test InstCombine
|
|
|
|
// EMIT_MIR equal_true.opt.InstCombine.diff
|
|
|
|
fn opt(x: bool) -> i32 {
|
|
if x == true { 0 } else { 1 }
|
|
}
|
|
|
|
fn main() {
|
|
opt(true);
|
|
}
|