rust/tests/mir-opt/inline/dyn_trait.mk_cycle.Inline.p...

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

21 lines
455 B
Diff
Raw Normal View History

2022-05-12 18:46:28 +08:00
- // MIR for `mk_cycle` before Inline
+ // MIR for `mk_cycle` after Inline
fn mk_cycle(_1: &dyn Cache<V = V>) -> () {
2023-06-06 21:47:00 +08:00
debug c => _1;
let mut _0: ();
let mut _2: &dyn Cache<V = V>;
2022-05-12 18:46:28 +08:00
bb0: {
2023-06-06 21:47:00 +08:00
StorageLive(_2);
_2 = &(*_1);
2023-06-24 00:53:09 +08:00
_0 = <dyn Cache<V = V> as Cache>::store_nocache(move _2) -> [return: bb1, unwind continue];
2022-05-12 18:46:28 +08:00
}
bb1: {
2023-06-06 21:47:00 +08:00
StorageDead(_2);
return;
2022-05-12 18:46:28 +08:00
}
}