Skip to content

Commit 19767eb

Browse files
committed
FileCheck slice_len.
1 parent 3e90c1b commit 19767eb

5 files changed

+22
-7
lines changed

tests/mir-opt/const_prop/slice_len.main.ConstProp.32bit.panic-abort.diff

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
let mut _7: usize;
1313
let mut _8: bool;
1414
let mut _9: &[u32; 3];
15+
scope 1 {
16+
debug a => _1;
17+
}
1518

1619
bb0: {
1720
StorageLive(_1);
@@ -39,8 +42,8 @@
3942
StorageDead(_6);
4043
StorageDead(_4);
4144
StorageDead(_2);
42-
StorageDead(_1);
4345
_0 = const ();
46+
StorageDead(_1);
4447
return;
4548
}
4649
}

tests/mir-opt/const_prop/slice_len.main.ConstProp.32bit.panic-unwind.diff

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
let mut _7: usize;
1313
let mut _8: bool;
1414
let mut _9: &[u32; 3];
15+
scope 1 {
16+
debug a => _1;
17+
}
1518

1619
bb0: {
1720
StorageLive(_1);
@@ -39,8 +42,8 @@
3942
StorageDead(_6);
4043
StorageDead(_4);
4144
StorageDead(_2);
42-
StorageDead(_1);
4345
_0 = const ();
46+
StorageDead(_1);
4447
return;
4548
}
4649
}

tests/mir-opt/const_prop/slice_len.main.ConstProp.64bit.panic-abort.diff

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
let mut _7: usize;
1313
let mut _8: bool;
1414
let mut _9: &[u32; 3];
15+
scope 1 {
16+
debug a => _1;
17+
}
1518

1619
bb0: {
1720
StorageLive(_1);
@@ -39,8 +42,8 @@
3942
StorageDead(_6);
4043
StorageDead(_4);
4144
StorageDead(_2);
42-
StorageDead(_1);
4345
_0 = const ();
46+
StorageDead(_1);
4447
return;
4548
}
4649
}

tests/mir-opt/const_prop/slice_len.main.ConstProp.64bit.panic-unwind.diff

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
let mut _7: usize;
1313
let mut _8: bool;
1414
let mut _9: &[u32; 3];
15+
scope 1 {
16+
debug a => _1;
17+
}
1518

1619
bb0: {
1720
StorageLive(_1);
@@ -39,8 +42,8 @@
3942
StorageDead(_6);
4043
StorageDead(_4);
4144
StorageDead(_2);
42-
StorageDead(_1);
4345
_0 = const ();
46+
StorageDead(_1);
4447
return;
4548
}
4649
}

tests/mir-opt/const_prop/slice_len.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
// skip-filecheck
2-
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
31
// unit-test: ConstProp
42
// compile-flags: -Zmir-enable-passes=+InstSimplify
3+
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
54
// EMIT_MIR_FOR_EACH_BIT_WIDTH
65

76
// EMIT_MIR slice_len.main.ConstProp.diff
87
fn main() {
9-
(&[1u32, 2, 3] as &[u32])[1];
8+
// CHECK-LABEL: fn main(
9+
// CHECK: debug a => [[a:_.*]];
10+
// CHECK: assert(const true,
11+
// CHECK: [[a]] = const 2_u32;
12+
let a = (&[1u32, 2, 3] as &[u32])[1];
1013
}

0 commit comments

Comments
 (0)