rust/tests/mir-opt/issue_91633.bar.built.after.mir

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

38 lines
723 B
Rust
Raw Normal View History

// MIR for `bar` after built
2022-08-13 10:13:20 -05:00
fn bar(_1: Box<[T]>) -> () {
2023-06-06 08:47:00 -05:00
debug it => _1;
let mut _0: ();
let mut _2: &<[T] as std::ops::Index<usize>>::Output;
let mut _3: &[T];
2022-08-13 10:13:20 -05:00
scope 1 {
}
bb0: {
2023-06-06 08:47:00 -05:00
StorageLive(_2);
StorageLive(_3);
_3 = &(*_1);
_2 = <[T] as Index<usize>>::index(move _3, const 0_usize) -> [return: bb1, unwind: bb3];
2022-08-13 10:13:20 -05:00
}
bb1: {
2023-06-06 08:47:00 -05:00
StorageDead(_3);
PlaceMention((*_2));
StorageDead(_2);
_0 = const ();
drop(_1) -> [return: bb2, unwind: bb4];
2022-08-13 10:13:20 -05:00
}
bb2: {
2023-06-06 08:47:00 -05:00
return;
2022-08-13 10:13:20 -05:00
}
bb3 (cleanup): {
2023-08-24 07:26:26 -05:00
drop(_1) -> [return: bb4, unwind terminate(cleanup)];
2022-08-13 10:13:20 -05:00
}
bb4 (cleanup): {
2023-06-06 08:47:00 -05:00
resume;
2022-08-13 10:13:20 -05:00
}
}