We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19767eb commit a12027eCopy full SHA for a12027e
tests/mir-opt/const_prop/switch_int.rs
@@ -1,13 +1,20 @@
1
-// skip-filecheck
2
// unit-test: ConstProp
3
// compile-flags: -Zmir-enable-passes=+SimplifyConstCondition-after-const-prop
4
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
+
5
#[inline(never)]
6
fn foo(_: i32) { }
7
8
// EMIT_MIR switch_int.main.ConstProp.diff
9
// EMIT_MIR switch_int.main.SimplifyConstCondition-after-const-prop.diff
10
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)
18
match 1 {
19
1 => foo(0),
20
_ => foo(-1),
0 commit comments