rust/tests/mir-opt/instsimplify/duplicate_switch_targets.rs

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

30 lines
702 B
Rust
Raw Normal View History

2023-10-16 14:39:34 -05:00
// unit-test: InstSimplify
2023-02-24 15:32:59 -06:00
#![feature(custom_mir, core_intrinsics)]
#![crate_type = "lib"]
use std::intrinsics::mir::*;
2023-10-16 14:39:34 -05:00
// EMIT_MIR duplicate_switch_targets.assert_zero.InstSimplify.diff
2023-02-24 15:32:59 -06:00
#[custom_mir(dialect = "runtime", phase = "post-cleanup")]
pub unsafe fn assert_zero(x: u8) -> u8 {
2023-10-16 14:39:34 -05:00
// CHECK-LABEL: fn assert_zero(
// CHECK: switchInt({{.*}}) -> [0: {{bb.*}}, otherwise: {{bb.*}}]
2023-02-24 15:32:59 -06:00
mir!(
{
match x {
0 => retblock,
1 => unreachable,
_ => unreachable,
}
}
unreachable = {
Unreachable()
}
retblock = {
RET = x;
Return()
}
)
}