Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
mir-opt
/
equal_true.rs
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
);
}