summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/instcombine_duplicate_switch_targets.rs
blob: ef3b487afa32f7d523cadedbbf50e1bfa0e7fb3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#![feature(custom_mir, core_intrinsics)]
#![crate_type = "lib"]

use std::intrinsics::mir::*;

// unit-test: InstCombine

// EMIT_MIR instcombine_duplicate_switch_targets.assert_zero.InstCombine.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()
        }
    )
}