mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
75 lines
1.6 KiB
Diff
75 lines
1.6 KiB
Diff
- // MIR for `foo` before MatchBranchSimplification
|
|
+ // MIR for `foo` after MatchBranchSimplification
|
|
|
|
fn foo(_1: [u8; 16]) -> Option<[u8; 4]> {
|
|
debug bytes => _1;
|
|
let mut _0: std::option::Option<[u8; 4]>;
|
|
let _2: [u32; 4];
|
|
let mut _3: [u8; 16];
|
|
let mut _5: [u8; 4];
|
|
let mut _6: u32;
|
|
scope 1 {
|
|
debug dwords => _2;
|
|
scope 3 {
|
|
debug ip => _4;
|
|
let _4: u32;
|
|
scope 4 {
|
|
}
|
|
}
|
|
}
|
|
scope 2 {
|
|
}
|
|
|
|
bb0: {
|
|
StorageLive(_2);
|
|
StorageLive(_3);
|
|
_3 = _1;
|
|
_2 = move _3 as [u32; 4] (Transmute);
|
|
StorageDead(_3);
|
|
switchInt(_2[0 of 4]) -> [0: bb1, otherwise: bb6];
|
|
}
|
|
|
|
bb1: {
|
|
switchInt(_2[1 of 4]) -> [0: bb2, otherwise: bb6];
|
|
}
|
|
|
|
bb2: {
|
|
switchInt(_2[2 of 4]) -> [0: bb4, 4294901760: bb5, otherwise: bb6];
|
|
}
|
|
|
|
bb3: {
|
|
StorageLive(_5);
|
|
StorageLive(_6);
|
|
_6 = _4;
|
|
_5 = move _6 as [u8; 4] (Transmute);
|
|
StorageDead(_6);
|
|
_0 = Option::<[u8; 4]>::Some(move _5);
|
|
StorageDead(_5);
|
|
StorageDead(_4);
|
|
goto -> bb7;
|
|
}
|
|
|
|
bb4: {
|
|
StorageLive(_4);
|
|
_4 = _2[3 of 4];
|
|
goto -> bb3;
|
|
}
|
|
|
|
bb5: {
|
|
StorageLive(_4);
|
|
_4 = _2[3 of 4];
|
|
goto -> bb3;
|
|
}
|
|
|
|
bb6: {
|
|
_0 = Option::<[u8; 4]>::None;
|
|
goto -> bb7;
|
|
}
|
|
|
|
bb7: {
|
|
StorageDead(_2);
|
|
return;
|
|
}
|
|
}
|
|
|