rust/tests/mir-opt/equal_true.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
182 B
Rust
Raw Normal View History

// skip-filecheck
2023-05-06 22:20:58 -05:00
// unit-test InstSimplify
2023-05-06 22:20:58 -05:00
// EMIT_MIR equal_true.opt.InstSimplify.diff
fn opt(x: bool) -> i32 {
if x == true { 0 } else { 1 }
}
fn main() {
opt(true);
}