rust/tests/mir-opt/inline/unsized_argument.caller.Inline.diff

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

42 lines
1.1 KiB
Diff
Raw Normal View History

- // MIR for `caller` before Inline
+ // MIR for `caller` after Inline
fn caller(_1: Box<[i32]>) -> () {
2023-06-06 13:47:00 +00:00
debug x => _1;
let mut _0: ();
let _2: ();
let mut _3: std::boxed::Box<[i32]>;
let mut _4: ();
let mut _5: ();
let mut _6: ();
let mut _7: *const [i32];
bb0: {
2023-06-06 13:47:00 +00:00
StorageLive(_2);
StorageLive(_3);
_3 = move _1;
_7 = (((_3.0: std::ptr::Unique<[i32]>).0: std::ptr::NonNull<[i32]>).0: *const [i32]);
_2 = callee(move (*_7)) -> [return: bb3, unwind: bb4];
}
bb1: {
2023-06-06 13:47:00 +00:00
StorageDead(_3);
StorageDead(_2);
_0 = const ();
return;
}
bb2 (cleanup): {
2023-06-06 13:47:00 +00:00
resume;
}
bb3: {
2023-06-06 13:47:00 +00:00
_4 = alloc::alloc::box_free::<[i32], std::alloc::Global>(move (_3.0: std::ptr::Unique<[i32]>), move (_3.1: std::alloc::Global)) -> bb1;
}
bb4 (cleanup): {
2023-06-06 13:47:00 +00:00
_6 = alloc::alloc::box_free::<[i32], std::alloc::Global>(move (_3.0: std::ptr::Unique<[i32]>), move (_3.1: std::alloc::Global)) -> [return: bb2, unwind terminate];
}
}