Skip to content

Commit 6cb6716

Browse files
committed
Add test for checking if-let or-patterns
1 parent d245464 commit 6cb6716

File tree

2 files changed

+108
-0
lines changed

2 files changed

+108
-0
lines changed
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// EMIT_MIR issue_75439.foo.MatchBranchSimplification.diff
2+
3+
#![feature(const_fn_transmute)]
4+
#![feature(or_patterns)]
5+
6+
use std::mem::transmute;
7+
8+
pub fn foo(bytes: [u8; 16]) -> Option<[u8; 4]> {
9+
// big endian `u32`s
10+
let dwords: [u32; 4] = unsafe { transmute(bytes) };
11+
const FF: u32 = 0x0000_ffff_u32.to_be();
12+
if let [0, 0, 0 | FF, ip] = dwords {
13+
Some(unsafe { transmute(ip) })
14+
} else {
15+
None
16+
}
17+
}
18+
19+
fn main() {
20+
let _ = foo([0; 16]);
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
- // MIR for `foo` before MatchBranchSimplification
2+
+ // MIR for `foo` after MatchBranchSimplification
3+
4+
fn foo(_1: [u8; 16]) -> Option<[u8; 4]> {
5+
debug bytes => _1; // in scope 0 at $DIR/issue-75439.rs:8:12: 8:17
6+
let mut _0: std::option::Option<[u8; 4]>; // return place in scope 0 at $DIR/issue-75439.rs:8:32: 8:47
7+
let _2: [u32; 4]; // in scope 0 at $DIR/issue-75439.rs:10:9: 10:15
8+
let mut _3: [u8; 16]; // in scope 0 at $DIR/issue-75439.rs:10:47: 10:52
9+
let mut _5: [u8; 4]; // in scope 0 at $DIR/issue-75439.rs:13:14: 13:38
10+
let mut _6: u32; // in scope 0 at $DIR/issue-75439.rs:13:33: 13:35
11+
scope 1 {
12+
debug dwords => _2; // in scope 1 at $DIR/issue-75439.rs:10:9: 10:15
13+
let _4: u32; // in scope 1 at $DIR/issue-75439.rs:12:27: 12:29
14+
scope 3 {
15+
debug ip => _4; // in scope 3 at $DIR/issue-75439.rs:12:27: 12:29
16+
scope 4 {
17+
}
18+
}
19+
}
20+
scope 2 {
21+
}
22+
23+
bb0: {
24+
StorageLive(_2); // scope 0 at $DIR/issue-75439.rs:10:9: 10:15
25+
StorageLive(_3); // scope 2 at $DIR/issue-75439.rs:10:47: 10:52
26+
_3 = _1; // scope 2 at $DIR/issue-75439.rs:10:47: 10:52
27+
_2 = transmute::<[u8; 16], [u32; 4]>(move _3) -> bb1; // scope 2 at $DIR/issue-75439.rs:10:37: 10:53
28+
// mir::Constant
29+
// + span: $DIR/issue-75439.rs:10:37: 10:46
30+
// + literal: Const { ty: unsafe extern "rust-intrinsic" fn([u8; 16]) -> [u32; 4] {std::intrinsics::transmute::<[u8; 16], [u32; 4]>}, val: Value(Scalar(<ZST>)) }
31+
}
32+
33+
bb1: {
34+
StorageDead(_3); // scope 2 at $DIR/issue-75439.rs:10:52: 10:53
35+
switchInt(_2[0 of 4]) -> [0_u32: bb2, otherwise: bb4]; // scope 1 at $DIR/issue-75439.rs:12:13: 12:14
36+
}
37+
38+
bb2: {
39+
switchInt(_2[1 of 4]) -> [0_u32: bb3, otherwise: bb4]; // scope 1 at $DIR/issue-75439.rs:12:16: 12:17
40+
}
41+
42+
bb3: {
43+
switchInt(_2[2 of 4]) -> [0_u32: bb6, 4294901760_u32: bb7, otherwise: bb4]; // scope 1 at $DIR/issue-75439.rs:12:19: 12:20
44+
}
45+
46+
bb4: {
47+
discriminant(_0) = 0; // scope 1 at $DIR/issue-75439.rs:15:9: 15:13
48+
goto -> bb9; // scope 1 at $DIR/issue-75439.rs:12:5: 16:6
49+
}
50+
51+
bb5: {
52+
StorageLive(_5); // scope 3 at $DIR/issue-75439.rs:13:14: 13:38
53+
StorageLive(_6); // scope 4 at $DIR/issue-75439.rs:13:33: 13:35
54+
_6 = _4; // scope 4 at $DIR/issue-75439.rs:13:33: 13:35
55+
_5 = transmute::<u32, [u8; 4]>(move _6) -> bb8; // scope 4 at $DIR/issue-75439.rs:13:23: 13:36
56+
// mir::Constant
57+
// + span: $DIR/issue-75439.rs:13:23: 13:32
58+
// + literal: Const { ty: unsafe extern "rust-intrinsic" fn(u32) -> [u8; 4] {std::intrinsics::transmute::<u32, [u8; 4]>}, val: Value(Scalar(<ZST>)) }
59+
}
60+
61+
bb6: {
62+
StorageLive(_4); // scope 1 at $DIR/issue-75439.rs:12:27: 12:29
63+
_4 = _2[3 of 4]; // scope 1 at $DIR/issue-75439.rs:12:27: 12:29
64+
goto -> bb5; // scope 1 at $DIR/issue-75439.rs:12:5: 16:6
65+
}
66+
67+
bb7: {
68+
StorageLive(_4); // scope 1 at $DIR/issue-75439.rs:12:27: 12:29
69+
_4 = _2[3 of 4]; // scope 1 at $DIR/issue-75439.rs:12:27: 12:29
70+
goto -> bb5; // scope 1 at $DIR/issue-75439.rs:12:5: 16:6
71+
}
72+
73+
bb8: {
74+
StorageDead(_6); // scope 4 at $DIR/issue-75439.rs:13:35: 13:36
75+
((_0 as Some).0: [u8; 4]) = move _5; // scope 3 at $DIR/issue-75439.rs:13:9: 13:39
76+
discriminant(_0) = 1; // scope 3 at $DIR/issue-75439.rs:13:9: 13:39
77+
StorageDead(_5); // scope 3 at $DIR/issue-75439.rs:13:38: 13:39
78+
StorageDead(_4); // scope 1 at $DIR/issue-75439.rs:14:5: 14:6
79+
goto -> bb9; // scope 1 at $DIR/issue-75439.rs:12:5: 16:6
80+
}
81+
82+
bb9: {
83+
StorageDead(_2); // scope 0 at $DIR/issue-75439.rs:17:1: 17:2
84+
return; // scope 0 at $DIR/issue-75439.rs:17:2: 17:2
85+
}
86+
}
87+

0 commit comments

Comments
 (0)