Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
mir-opt
/
not_equal_false.rs
blob: 2ae03da40f8a2b6bbf637eadb5c619f35cb9073f [
file
] [
log
] [
blame
]
// 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
);
}