Skip to content

Commit 0d5bc87

Browse files
committed
FileCheck bad_op_div_by_zero.
1 parent 9f01d9d commit 0d5bc87

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
// skip-filecheck
2-
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
31
// unit-test: ConstProp
2+
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
3+
44
// EMIT_MIR bad_op_div_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 divide `{}` by zero", const 1_i32)
11+
// CHECK: assert(!const false, "attempt to compute `{} / {}`, which would overflow", const 1_i32, const 0_i32)
12+
// CHECK: [[z]] = Div(const 1_i32, const 0_i32);
713
let y = 0;
814
let _z = 1 / y;
915
}

0 commit comments

Comments
 (0)