rust/tests/mir-opt/dataflow-const-prop/offset_of.concrete.DataflowConstProp.panic-abort.diff

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

45 lines
1.1 KiB
Diff
Raw Normal View History

2023-04-15 11:41:57 -05:00
- // MIR for `concrete` before DataflowConstProp
+ // MIR for `concrete` after DataflowConstProp
fn concrete() -> () {
let mut _0: ();
let _1: usize;
scope 1 {
debug x => _1;
let _2: usize;
2023-04-15 11:41:57 -05:00
scope 2 {
debug y => _2;
let _3: usize;
2023-04-15 11:41:57 -05:00
scope 3 {
debug z0 => _3;
let _4: usize;
2023-04-15 11:41:57 -05:00
scope 4 {
debug z1 => _4;
2023-04-15 11:41:57 -05:00
}
}
}
}
bb0: {
StorageLive(_1);
- _1 = OffsetOf(Alpha, [(0, 0)]);
+ _1 = const 4_usize;
2023-04-15 11:41:57 -05:00
StorageLive(_2);
- _2 = OffsetOf(Alpha, [(0, 1)]);
+ _2 = const 0_usize;
2023-04-15 11:41:57 -05:00
StorageLive(_3);
- _3 = OffsetOf(Alpha, [(0, 2), (0, 0)]);
+ _3 = const 2_usize;
2023-04-15 11:41:57 -05:00
StorageLive(_4);
- _4 = OffsetOf(Alpha, [(0, 2), (0, 1)]);
+ _4 = const 3_usize;
2023-04-15 11:41:57 -05:00
_0 = const ();
StorageDead(_4);
2023-04-15 11:41:57 -05:00
StorageDead(_3);
StorageDead(_2);
2023-04-15 11:41:57 -05:00
StorageDead(_1);
return;
}
}