Skip to content

Commit 97f03cb

Browse files
committed
FileCheck bad_op_mod_by_zero.
1 parent 0d5bc87 commit 97f03cb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1-
// skip-filecheck
21
// unit-test: ConstProp
32
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
3+
44
// EMIT_MIR bad_op_mod_by_zero.main.ConstProp.diff
55
#[allow(unconditional_panic)]
66
fn main() {
7+
// CHECK-LABEL: fn main(
8+
// CHECK: debug y => [[y:_.*]];
9+
// CHECK: debug _z => [[z:_.*]];
10+
// CHECK: assert(!const true, "attempt to calculate the remainder of `{}` with a divisor of
11+
// zero", const 1_i32)
12+
// CHECK: assert(!const false, "attempt to compute the remainder of `{} % {}`, which would overflow", const 1_i32, const 0_i32)
13+
// CHECK: [[z]] = Rem(const 1_i32, const 0_i32);
714
let y = 0;
815
let _z = 1 % y;
916
}

0 commit comments

Comments
 (0)