about summary refs log tree commit diff
path: root/tests/mir-opt/const_prop/inherit_overflow.rs
blob: c37f3fdb8647583a23f17315b0067381698f1706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
//@ test-mir-pass: GVN
//@ compile-flags: -Zmir-enable-passes=+Inline

// After inlining, this will contain a `CheckedBinaryOp`.
// Propagating the overflow is ok as codegen will just skip emitting the panic.
// EMIT_MIR inherit_overflow.main.GVN.diff
fn main() {
    // CHECK-LABEL: fn main(
    // CHECK: {{_.*}} = const (0_u8, true);
    // CHECK: assert(!const true,
    // CHECK: {{_.*}} = const 0_u8;
    let _ = <u8 as std::ops::Add>::add(255, 1);
}