summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/dest-prop/unreachable.rs
blob: 32b5def984a8053614e071fe22a8199bb6eb9458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Check that unreachable code is removed after the destination propagation.
// Regression test for issue #105428.
//
// compile-flags: --crate-type=lib -Zmir-opt-level=0
// compile-flags: -Zmir-enable-passes=+ConstProp,+SimplifyConstCondition-after-const-prop,+DestinationPropagation

// EMIT_MIR unreachable.f.DestinationPropagation.diff
pub fn f<T: Copy>(a: T) {
    let b = a;
    if false {
        g(a, b);
    } else {
        g(b, b);
    }
}

#[inline(never)]
pub fn g<T: Copy>(_: T, _: T) {}