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.

43 lines
810 B
Rust
Raw Normal View History

// MIR for `bar` after built
2022-08-13 15:13:20 +00:00
fn bar(_1: Box<[T]>) -> () {
2023-06-06 13:47:00 +00:00
debug it => _1;
let mut _0: ();
let mut _2: &<[T] as std::ops::Index<usize>>::Output;
let mut _3: &[T];
2022-08-13 15:13:20 +00:00
scope 1 {
}
bb0: {
2023-06-06 13:47:00 +00:00
StorageLive(_2);
StorageLive(_3);
_3 = &(*_1);
_2 = <[T] as Index<usize>>::index(move _3, const 0_usize) -> [return: bb1, unwind: bb4];
2022-08-13 15:13:20 +00:00
}
bb1: {
2023-06-06 13:47:00 +00:00
StorageDead(_3);
PlaceMention((*_2));
StorageDead(_2);
_0 = const ();
drop(_1) -> [return: bb3, unwind: bb5];
2022-08-13 15:13:20 +00:00
}
bb2: {
2024-02-12 03:56:03 +00:00
FakeRead(ForMatchedPlace(None), (*_2));
unreachable;
2022-08-13 15:13:20 +00:00
}
2024-02-12 03:56:03 +00:00
bb3: {
2024-02-16 01:57:24 +00:00
return;
2024-02-12 03:56:03 +00:00
}
bb4 (cleanup): {
drop(_1) -> [return: bb5, unwind terminate(cleanup)];
2024-02-16 01:57:24 +00:00
}
bb5 (cleanup): {
2023-06-06 13:47:00 +00:00
resume;
2022-08-13 15:13:20 +00:00
}
}