rust/tests/mir-opt/inline/inline_cycle_generic.main.Inline.panic-abort.diff

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

31 lines
777 B
Diff
Raw Normal View History

2020-12-29 10:21:52 -06:00
- // MIR for `main` before Inline
+ // MIR for `main` after Inline
fn main() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: ();
+ scope 1 (inlined <C as Call>::call) {
+ scope 2 (inlined <B<A> as Call>::call) {
+ scope 3 (inlined <A as Call>::call) {
+ scope 4 (inlined <B<C> as Call>::call) {
+ scope 5 (inlined <C as Call>::call) {
+ }
+ }
+ }
2021-12-13 06:46:30 -06:00
+ }
+ }
2020-12-29 10:21:52 -06:00
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
- _1 = <C as Call>::call() -> [return: bb1, unwind unreachable];
+ _1 = <B<A> as Call>::call() -> [return: bb1, unwind unreachable];
2020-12-29 10:21:52 -06:00
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageDead(_1);
_0 = const ();
return;
2020-12-29 10:21:52 -06:00
}
}