Skip to content

Commit ce9b1e2

Browse files
committedDec 2, 2023
FileCheck issue_66971.
1 parent 218d8cc commit ce9b1e2

3 files changed

+20
-6
lines changed
 

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

+9-2
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,24 @@
55
let mut _0: ();
66
let _1: ();
77
let mut _2: ((), u8, u8);
8+
let mut _3: ();
89

910
bb0: {
11+
StorageLive(_1);
1012
StorageLive(_2);
11-
- _2 = (const (), const 0_u8, const 0_u8);
12-
- _1 = encode(move _2) -> [return: bb1, unwind unreachable];
13+
StorageLive(_3);
14+
_3 = ();
15+
- _2 = (move _3, const 0_u8, const 0_u8);
1316
+ _2 = const ((), 0_u8, 0_u8);
17+
StorageDead(_3);
18+
- _1 = encode(move _2) -> [return: bb1, unwind unreachable];
1419
+ _1 = encode(const ((), 0_u8, 0_u8)) -> [return: bb1, unwind unreachable];
1520
}
1621

1722
bb1: {
1823
StorageDead(_2);
24+
StorageDead(_1);
25+
_0 = const ();
1926
return;
2027
}
2128
+ }

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

+9-2
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,24 @@
55
let mut _0: ();
66
let _1: ();
77
let mut _2: ((), u8, u8);
8+
let mut _3: ();
89

910
bb0: {
11+
StorageLive(_1);
1012
StorageLive(_2);
11-
- _2 = (const (), const 0_u8, const 0_u8);
12-
- _1 = encode(move _2) -> [return: bb1, unwind continue];
13+
StorageLive(_3);
14+
_3 = ();
15+
- _2 = (move _3, const 0_u8, const 0_u8);
1316
+ _2 = const ((), 0_u8, 0_u8);
17+
StorageDead(_3);
18+
- _1 = encode(move _2) -> [return: bb1, unwind continue];
1419
+ _1 = encode(const ((), 0_u8, 0_u8)) -> [return: bb1, unwind continue];
1520
}
1621

1722
bb1: {
1823
StorageDead(_2);
24+
StorageDead(_1);
25+
_0 = const ();
1926
return;
2027
}
2128
+ }

‎tests/mir-opt/const_prop/issue_66971.rs

+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
// Due to a bug in propagating scalar pairs the assertion below used to fail. In the expected
75
// outputs below, after ConstProp this is how _2 would look like with the bug:
@@ -16,5 +14,7 @@ fn encode(this: ((), u8, u8)) {
1614

1715
// EMIT_MIR issue_66971.main.ConstProp.diff
1816
fn main() {
17+
// CHECK-LABEL: fn main(
18+
// CHECK: = encode(const ((), 0_u8, 0_u8))
1919
encode(((), 0, 0));
2020
}

0 commit comments

Comments
 (0)