Skip to content

Commit a12027e

Browse files
committed
FileCheck switch_int.
1 parent 19767eb commit a12027e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

tests/mir-opt/const_prop/switch_int.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
// skip-filecheck
21
// unit-test: ConstProp
32
// compile-flags: -Zmir-enable-passes=+SimplifyConstCondition-after-const-prop
43
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
4+
55
#[inline(never)]
66
fn foo(_: i32) { }
77

88
// EMIT_MIR switch_int.main.ConstProp.diff
99
// EMIT_MIR switch_int.main.SimplifyConstCondition-after-const-prop.diff
1010
fn main() {
11+
// CHECK-LABEL: fn main(
12+
// CHECK: bb0: {
13+
// CHECK-NOT: switchInt(
14+
// CHECK: goto -> [[bb:bb.*]];
15+
// CHECK: [[bb]]: {
16+
// CHECK-NOT: _0 = foo(const -1_i32)
17+
// CHECK: _0 = foo(const 0_i32)
1118
match 1 {
1219
1 => foo(0),
1320
_ => foo(-1),

0 commit comments

Comments
 (0)