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