mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
81d7069e34
Co-authored-by: Ben Kimock <kimockb@gmail.com>
20 lines
347 B
Diff
20 lines
347 B
Diff
- // MIR for `caller` before Inline
|
|
+ // MIR for `caller` after Inline
|
|
|
|
fn caller() -> () {
|
|
let mut _0: ();
|
|
let _1: ();
|
|
|
|
bb0: {
|
|
StorageLive(_1);
|
|
_1 = callee() -> [return: bb1, unwind continue];
|
|
}
|
|
|
|
bb1: {
|
|
StorageDead(_1);
|
|
_0 = const ();
|
|
return;
|
|
}
|
|
}
|
|
|