mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 00:41:27 +00:00
20 lines
366 B
Diff
20 lines
366 B
Diff
- // MIR for `test` before MatchBranchSimplification
|
|
+ // MIR for `test` after MatchBranchSimplification
|
|
|
|
fn test(_1: bool) -> () {
|
|
let mut _0: ();
|
|
|
|
bb0: {
|
|
goto -> bb1;
|
|
}
|
|
|
|
bb1: {
|
|
switchInt(_1) -> [0: bb1, otherwise: bb2];
|
|
}
|
|
|
|
bb2: {
|
|
switchInt(_1) -> [0: bb1, otherwise: bb2];
|
|
}
|
|
}
|
|
|