rust/tests/mir-opt/inline/inline_cycle.one.Inline.panic-unwind.diff

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

26 lines
535 B
Diff
Raw Normal View History

- // MIR for `one` before Inline
+ // MIR for `one` after Inline
fn one() -> () {
2023-06-06 08:47:00 -05:00
let mut _0: ();
let _1: ();
+ scope 1 (inlined <C as Call>::call) {
+ scope 2 (inlined <A<C> as Call>::call) {
+ scope 3 (inlined <B<C> as Call>::call) {
2023-01-02 00:01:29 -06:00
+ }
+ }
+ }
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_1);
2023-06-23 11:53:09 -05:00
_1 = <C as Call>::call() -> [return: bb1, unwind continue];
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageDead(_1);
_0 = const ();
return;
}
}