blob: 717d10c6d76276bcd506881dc409a6aae251fab9 [file] [log] [blame]
// 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);
}