Skip to content

Commit 8e9b912

Browse files
committed
FileCheck issue_67019.
1 parent ce9b1e2 commit 8e9b912

3 files changed

+8
-2
lines changed

tests/mir-opt/const_prop/issue_67019.main.ConstProp.panic-abort.diff

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
let mut _3: (u8, u8);
99

1010
bb0: {
11+
StorageLive(_1);
1112
StorageLive(_2);
1213
StorageLive(_3);
1314
- _3 = (const 1_u8, const 2_u8);
@@ -21,6 +22,8 @@
2122

2223
bb1: {
2324
StorageDead(_2);
25+
StorageDead(_1);
26+
_0 = const ();
2427
return;
2528
}
2629
+ }

tests/mir-opt/const_prop/issue_67019.main.ConstProp.panic-unwind.diff

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
let mut _3: (u8, u8);
99

1010
bb0: {
11+
StorageLive(_1);
1112
StorageLive(_2);
1213
StorageLive(_3);
1314
- _3 = (const 1_u8, const 2_u8);
@@ -21,6 +22,8 @@
2122

2223
bb1: {
2324
StorageDead(_2);
25+
StorageDead(_1);
26+
_0 = const ();
2427
return;
2528
}
2629
+ }
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
// skip-filecheck
21
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
32
// unit-test: ConstProp
4-
// compile-flags: -Z mir-opt-level=3
53

64
// This used to ICE in const-prop
75

@@ -11,5 +9,7 @@ fn test(this: ((u8, u8),)) {
119

1210
// EMIT_MIR issue_67019.main.ConstProp.diff
1311
fn main() {
12+
// CHECK-LABEL: fn main(
13+
// CHECK: = test(const ((1_u8, 2_u8),))
1414
test(((1, 2),));
1515
}

0 commit comments

Comments
 (0)