rust/tests/mir-opt/copy-prop/dead_stores_better.f.CopyProp.after.panic-unwind.mir

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

27 lines
460 B
Rust
Raw Normal View History

2023-01-15 15:30:09 +00:00
// MIR for `f` after CopyProp
fn f(_1: usize) -> usize {
2023-06-06 13:47:00 +00:00
debug a => _1;
let mut _0: usize;
let _2: usize;
let mut _3: usize;
let mut _4: usize;
2023-01-15 15:30:09 +00:00
scope 1 {
2023-06-06 13:47:00 +00:00
debug b => _2;
2023-01-15 15:30:09 +00:00
}
bb0: {
2023-06-06 13:47:00 +00:00
_2 = _1;
_1 = const 5_usize;
_1 = _2;
StorageLive(_4);
_4 = _1;
2023-06-23 16:53:09 +00:00
_0 = id::<usize>(move _4) -> [return: bb1, unwind continue];
2023-01-15 15:30:09 +00:00
}
bb1: {
2023-06-06 13:47:00 +00:00
StorageDead(_4);
return;
2023-01-15 15:30:09 +00:00
}
}