rust/tests/mir-opt/instsimplify_duplicate_swit...

28 lines
609 B
Rust

#![feature(custom_mir, core_intrinsics)]
#![crate_type = "lib"]
use std::intrinsics::mir::*;
// unit-test: InstSimplify
// EMIT_MIR instsimplify_duplicate_switch_targets.assert_zero.InstSimplify.diff
#[custom_mir(dialect = "runtime", phase = "post-cleanup")]
pub unsafe fn assert_zero(x: u8) -> u8 {
mir!(
{
match x {
0 => retblock,
1 => unreachable,
_ => unreachable,
}
}
unreachable = {
Unreachable()
}
retblock = {
RET = x;
Return()
}
)
}