rust/tests/mir-opt/dataflow-const-prop/enum.multiple.DataflowConstProp.32bit.diff

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
1.6 KiB
Diff
Raw Normal View History

2023-02-18 03:35:52 -06:00
- // MIR for `multiple` before DataflowConstProp
+ // MIR for `multiple` after DataflowConstProp
fn multiple(_1: bool, _2: u8) -> () {
2023-06-06 08:47:00 -05:00
debug x => _1;
debug i => _2;
let mut _0: ();
let _3: std::option::Option<u8>;
let mut _4: bool;
let mut _5: u8;
let mut _7: isize;
2023-02-18 03:35:52 -06:00
scope 1 {
2023-06-06 08:47:00 -05:00
debug e => _3;
let _6: u8;
let _8: u8;
2023-02-18 03:35:52 -06:00
scope 2 {
2023-06-06 08:47:00 -05:00
debug x => _6;
let _9: u8;
2023-02-18 03:35:52 -06:00
scope 4 {
2023-06-06 08:47:00 -05:00
debug y => _9;
2023-02-18 03:35:52 -06:00
}
}
scope 3 {
2023-06-06 08:47:00 -05:00
debug i => _8;
2023-02-18 03:35:52 -06:00
}
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_3);
StorageLive(_4);
_4 = _1;
switchInt(move _4) -> [0: bb2, otherwise: bb1];
2023-02-18 03:35:52 -06:00
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageLive(_5);
_5 = _2;
_3 = Option::<u8>::Some(move _5);
StorageDead(_5);
goto -> bb3;
2023-02-18 03:35:52 -06:00
}
bb2: {
2023-06-06 08:47:00 -05:00
_3 = Option::<u8>::None;
goto -> bb3;
2023-02-18 03:35:52 -06:00
}
bb3: {
2023-06-06 08:47:00 -05:00
StorageDead(_4);
StorageLive(_6);
_7 = discriminant(_3);
switchInt(move _7) -> [0: bb4, 1: bb6, otherwise: bb5];
2023-02-18 03:35:52 -06:00
}
bb4: {
2023-06-06 08:47:00 -05:00
_6 = const 0_u8;
goto -> bb7;
2023-02-18 03:35:52 -06:00
}
bb5: {
2023-06-06 08:47:00 -05:00
unreachable;
2023-02-18 03:35:52 -06:00
}
bb6: {
2023-06-06 08:47:00 -05:00
StorageLive(_8);
_8 = ((_3 as Some).0: u8);
_6 = _8;
StorageDead(_8);
goto -> bb7;
2023-02-18 03:35:52 -06:00
}
bb7: {
2023-06-06 08:47:00 -05:00
StorageLive(_9);
_9 = _6;
_0 = const ();
StorageDead(_9);
StorageDead(_6);
StorageDead(_3);
return;
2023-02-18 03:35:52 -06:00
}
}