rust/tests/mir-opt/const_prop/bad_op_mod_by_zero.rs

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

17 lines
590 B
Rust
Raw Normal View History

2023-09-20 16:43:33 -05:00
//@ unit-test: GVN
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2023-12-02 14:17:49 -06:00
2023-09-20 16:43:33 -05:00
// EMIT_MIR bad_op_mod_by_zero.main.GVN.diff
#[allow(unconditional_panic)]
fn main() {
2023-12-02 14:17:49 -06:00
// CHECK-LABEL: fn main(
// CHECK: debug y => [[y:_.*]];
// CHECK: debug _z => [[z:_.*]];
// CHECK: assert(!const true, "attempt to calculate the remainder of `{}` with a divisor of
// zero", const 1_i32)
// CHECK: assert(!const false, "attempt to compute the remainder of `{} % {}`, which would overflow", const 1_i32, const 0_i32)
// CHECK: [[z]] = Rem(const 1_i32, const 0_i32);
let y = 0;
let _z = 1 % y;
}